CA-Foundation / frontend /nginx.global.conf
“vinit5112”
fix
87cac8f
raw
history blame contribute delete
360 Bytes
worker_processes 1;
pid /app/tmp/nginx.pid;
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;
}