From a94b14119eb85a02848924caa43bfa3f4941a78d Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 14 Nov 2016 11:58:51 +0200 Subject: [PATCH] roles/nginx: Increase error log level to warn This will show warnings in the error log, as well as more severe log messages. See: http://nginx.org/en/docs/ngx_core_module.html#error_log --- roles/nginx/files/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/nginx/files/nginx.conf b/roles/nginx/files/nginx.conf index 125e70b..8e6e1f5 100644 --- a/roles/nginx/files/nginx.conf +++ b/roles/nginx/files/nginx.conf @@ -9,7 +9,7 @@ worker_processes auto; # Log errors and warnings to this file # This is only used when you don't override it on a server{} level -error_log /var/log/nginx/error.log error; +error_log /var/log/nginx/error.log warn; # The file storing the process ID of the main process pid /var/run/nginx.pid;