Protokollinkonsistenz im WebDAV-Authentifizierungs-Handshake gelöst
This commit is contained in:
27
nginx.conf
Normal file
27
nginx.conf
Normal file
@@ -0,0 +1,27 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user