aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2019-04-04 00:27:10 -0400
committerMitch Riedstra <mitch@riedstra.us>2019-04-04 00:27:10 -0400
commit956973a11dedea5f7798052b1bc5e69556af30b0 (patch)
tree10eb4acddd95896d3f40817e0a8f4edf9c7fdf98
parentae7e4a7a4290f4c375f9a8d61ace82df6ff5a5ed (diff)
downloadnginx-956973a11dedea5f7798052b1bc5e69556af30b0.tar.gz
nginx-956973a11dedea5f7798052b1bc5e69556af30b0.tar.xz
Turn off access log for the nginx status
-rw-r--r--templates/nginx/nginx.conf1
1 files changed, 1 insertions, 0 deletions
diff --git a/templates/nginx/nginx.conf b/templates/nginx/nginx.conf
index a16530a..14079a2 100644
--- a/templates/nginx/nginx.conf
+++ b/templates/nginx/nginx.conf
@@ -33,6 +33,7 @@ http {
location /stub_status {
stub_status;
+ access_log off;
allow 127.0.0.1;
deny all;
}