diff --git a/rootfs/tmp/etc/nginx/nginx.conf b/rootfs/tmp/etc/nginx/nginx.conf index d301a21..2a1ee81 100644 --- a/rootfs/tmp/etc/nginx/nginx.conf +++ b/rootfs/tmp/etc/nginx/nginx.conf @@ -15,8 +15,7 @@ http { gzip on; map $http_upgrade $connection_upgrade { default upgrade; '' close; } disable_symlinks off; - log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; - access_log REPLACE_LOG_DIR/access.log main; + access_log REPLACE_LOG_DIR/access.log combined; server { listen 0.0.0.0:80 default_server; @@ -88,4 +87,5 @@ http { include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; include /etc/nginx/vhosts.d/*.conf; + } }