X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/8ae7e4dee68df33c5f5b0f520e481d1ed1633cae..bc6624fcc809acaf8dcdcf667e43cc5fc9bb1451:/cookbooks/nginx/templates/default/nginx.conf.erb diff --git a/cookbooks/nginx/templates/default/nginx.conf.erb b/cookbooks/nginx/templates/default/nginx.conf.erb index 03671bbe0..a16d25812 100644 --- a/cookbooks/nginx/templates/default/nginx.conf.erb +++ b/cookbooks/nginx/templates/default/nginx.conf.erb @@ -57,5 +57,17 @@ http { proxy_cache_path /var/cache/nginx/proxy-cache levels=1:2 use_temp_path=off keys_zone=<%= node['nginx']['cache']['proxy']['keys_zone'] %> inactive=<%= node['nginx']['cache']['proxy']['inactive'] %> max_size=<%= node['nginx']['cache']['proxy']['max_size'] %>; <% end -%> + # Internal site for munin monitoring + server { + listen 127.0.0.1:8050; + server_name localhost; + location /nginx_status { + stub_status on; + access_log off; + allow 127.0.0.1; + deny all; + } + } + include /etc/nginx/conf.d/*.conf; }