Add access_log directive in nginx default.conf

This fixes https://github.com/clearlinux/dockerfiles/issues/112
This commit is contained in:
puneetse
2019-04-30 16:25:41 -07:00
committed by George T Kramer
parent c26b654afc
commit ff6ed72302
+1
View File
@@ -3,5 +3,6 @@ server {
location / {
root /usr/share/nginx/html;
autoindex on;
access_log /var/log/nginx/access.log combined;
}
}