From ff6ed72302a4c10a08a426ccd370500789800379 Mon Sep 17 00:00:00 2001 From: puneetse <22071208+puneetse@users.noreply.github.com> Date: Tue, 30 Apr 2019 16:25:41 -0700 Subject: [PATCH] Add access_log directive in nginx default.conf This fixes https://github.com/clearlinux/dockerfiles/issues/112 --- nginx/default.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/nginx/default.conf b/nginx/default.conf index aa4585a..e92e4fa 100644 --- a/nginx/default.conf +++ b/nginx/default.conf @@ -3,5 +3,6 @@ server { location / { root /usr/share/nginx/html; autoindex on; + access_log /var/log/nginx/access.log combined; } }