CA-Foundation / frontend /nginx.global.conf
“vinit5112”
fix: override nginx global config to prevent log path error
99de5ef
raw
history blame
421 Bytes
# frontend/nginx.global.conf
# Remove user directive to avoid warning
# user nginx;
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
# Writable logs
access_log /app/logs/access.log;
error_log /app/logs/error.log warn;
sendfile on;
keepalive_timeout 65;
include /etc/nginx/conf.d/*.conf;
}