From 059727bfdd432e33879e1aa8536ad0bc6707a357 Mon Sep 17 00:00:00 2001 From: Colin Diem Date: Thu, 2 Feb 2023 20:57:34 -0500 Subject: [PATCH] adds access logging to nginx. --- nginx-reverse-proxy/default.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx-reverse-proxy/default.conf b/nginx-reverse-proxy/default.conf index 193cb13..b293f6e 100644 --- a/nginx-reverse-proxy/default.conf +++ b/nginx-reverse-proxy/default.conf @@ -189,7 +189,7 @@ location / { return 404; } -access_log off; +access_log /var/log/nginx/access.log access; log_not_found off; error_log /var/log/nginx/error.log error; }