pve-webservers/nginx/nginx.conf

26 lines
424 B
Nginx Configuration File
Raw Normal View History

2026-03-13 21:12:15 +01:00
# load_module /usr/local/libexec/nginx/ngx_http_lua_module.so;
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
error_log /var/log/nginx/error.log;
autoindex on;
sendfile on;
keepalive_timeout 65;
client_max_body_size 20m;
client_body_timeout 120s;
gzip on;
include /usr/local/etc/nginx/sites/*.conf;
}