avoid double logging for nginx error log

This commit is contained in:
Daniel Micay 2023-03-06 00:55:32 -05:00
parent 648ca1f657
commit 697f926f63

View File

@ -3,6 +3,8 @@
load_module modules/ngx_http_brotli_static_module.so;
error_log syslog:server=unix:/dev/log,nohostname;
# work around nginx still logging to stderr when using syslog error_log
error_log /dev/null;
worker_processes auto;
worker_rlimit_nofile 16384;