From 6a40e33073389ae431eb447a08ca07417ef10fc8 Mon Sep 17 00:00:00 2001 From: MK Date: Mon, 24 Aug 2020 01:56:06 -0400 Subject: [PATCH] Use the custom Nginx access log format (#642) If we are going to define a custom log format, we should probably be using that format. Fixes #635 --- nginx/nginx.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 84027d4..bd81a5e 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -17,6 +17,8 @@ http { '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; + access_log /var/log/nginx/access.log main; + sendfile on; tcp_nopush on; tcp_nodelay on;