Files
backup-configs/root/docker/nextcloud/data/nginx/nginx.conf
2026-03-28 10:48:09 +01:00

23 lines
390 B
Nginx Configuration File

user nginx;
worker_processes auto;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
types {
text/javascript mjs;
}
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
client_max_body_size 10G;
include /etc/nginx/conf.d/*.conf;
}