28 lines
615 B
Nginx Configuration File
28 lines
615 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;
|
|
|
|
# HIER EINFÜGEN:
|
|
include /etc/nginx/conf.d/proxy_generated/*.conf;
|
|
|
|
# IPv4-Port 80: globaler Redirect auf HTTPS
|
|
}
|