Using different way to redirect Nginx messages to stdout / stderr

This commit is contained in:
Alexey Pustovalov
2024-01-19 13:17:09 +09:00
parent b771cb15d1
commit bb5de25caa
45 changed files with 105 additions and 91 deletions

View File

@ -2,7 +2,7 @@
worker_processes 5;
worker_rlimit_nofile 256000;
error_log /dev/fd/2 error;
error_log /var/log/nginx/error.log error;
pid /tmp/nginx.pid;
@ -20,8 +20,8 @@ http {
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /dev/fd/1 main;
error_log /dev/fd/2 error;
access_log /var/log/nginx/access.log main;
error_log /var/log/nginx/error.log error;
client_body_temp_path /tmp/client_body 1 2;
proxy_temp_path /tmp/proxy 1 2;