Files
IPV4-proxyserver-zu-IPV6-on…/nginx.conf
2026-02-25 17:42:24 +01:00

28 lines
644 B
Nginx Configuration File

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
# HIER ENTFERNEN!
events {
worker_connections 4096;
multi_accept on;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
proxy_hide_header Upgrade;
sendfile on;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
server_names_hash_bucket_size 128;
include /etc/nginx/conf.d/*.conf;
client_max_body_size 64M;
# HIER EINFÜGEN:
include /etc/nginx/conf.d/proxy_generated/*.conf;
# IPv4-Port 80: globaler Redirect auf HTTPS
}