2025-10-11 14:20:03 +02:00
|
|
|
worker_processes auto;
|
|
|
|
|
pid /tmp/nginx.pid;
|
|
|
|
|
daemon off;
|
|
|
|
|
|
|
|
|
|
events {
|
|
|
|
|
worker_connections 768;
|
|
|
|
|
# multi_accept on;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
error_log /home/container/error.log;
|
|
|
|
|
error_log /dev/stdout;
|
|
|
|
|
|
|
|
|
|
http {
|
|
|
|
|
sendfile on;
|
|
|
|
|
tcp_nopush on;
|
|
|
|
|
tcp_nodelay on;
|
|
|
|
|
keepalive_timeout 65;
|
|
|
|
|
types_hash_max_size 2048;
|
|
|
|
|
|
|
|
|
|
include /home/container/nginx/mime.types;
|
|
|
|
|
default_type application/octet-stream;
|
|
|
|
|
|
|
|
|
|
proxy_temp_path /tmp;
|
|
|
|
|
client_body_temp_path /tmp;
|
|
|
|
|
fastcgi_temp_path /tmp;
|
|
|
|
|
uwsgi_temp_path /tmp;
|
|
|
|
|
scgi_temp_path /tmp;
|
|
|
|
|
|
2025-10-11 14:54:06 +02:00
|
|
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
2025-10-11 14:20:03 +02:00
|
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
|
|
|
|
|
|
access_log /home/container/access.log;
|
|
|
|
|
access_log /dev/stdout;
|
|
|
|
|
error_log /home/container/error.log;
|
|
|
|
|
error_log /dev/stdout;
|
|
|
|
|
|
|
|
|
|
gzip on;
|
|
|
|
|
gzip_disable "msie6";
|
|
|
|
|
|
|
|
|
|
include /home/container/nginx/conf.d/*.conf;
|
2025-10-11 14:54:06 +02:00
|
|
|
}
|