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
This commit is contained in:
Alan Orth 2016-11-14 11:58:51 +02:00
parent 3d6844a7b7
commit a94b14119e
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9

View File

@ -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;