From 588819ab6d84cc30afcd44f52d4b2b6887a6be41 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Fri, 20 May 2016 20:32:33 +0300 Subject: [PATCH] turn errors and access logs on by default for nginx --- nginx/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 07708308..17ac8821 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -17,8 +17,8 @@ http { types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; - access_log off; - error_log off; + access_log on; + error_log on; gzip on; gzip_disable "msie6"; include /etc/nginx/conf.d/*.conf;