nginx: Set error log level to warn

This commit is contained in:
Timo Makinen 2021-09-16 17:14:49 +00:00
parent d7026bff3b
commit f9f194b3a2
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
user {{ nginx_user }};
worker_processes auto;
error_log {{ nginx_logdir }}/error.log;
error_log {{ nginx_logdir }}/error.log warn;
events {
worker_connections 1024;

View file

@ -15,7 +15,7 @@ server {
server_name {{ site }};
access_log {{ nginx_logdir }}/{{ site }}.access.log combined;
error_log {{ nginx_logdir }}/{{ site }}.error.log;
error_log {{ nginx_logdir }}/{{ site }}.error.log warn;
add_header Strict-Transport-Security "max-age=63072000" always;