1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00

Expose /nginx_status on the proxy image for DataDog collection.

This commit is contained in:
Sam Rose 2023-12-06 09:48:27 +00:00
parent 5cef7c8009
commit 72d2b57e5d
No known key found for this signature in database

View file

@ -249,4 +249,30 @@ http {
gzip_comp_level 6;
gzip_types text/plain text/css text/xml application/json application/javascript application/rss+xml application/atom+xml image/svg+xml;
}
# From https://docs.datadoghq.com/integrations/nginx/?tab=kubernetes
server {
listen 81;
server_name localhost;
access_log off;
allow 127.0.0.1;
deny all;
location /nginx_status {
# Choose your status module
# freely available with open source NGINX
stub_status;
# for open source NGINX < version 1.7.5
# stub_status on;
# available only with NGINX Plus
# status;
# ensures the version information can be retrieved
server_tokens on;
}
}
}