d144bc082c
SSL Redirects funktionieren jetzt
36 lines
615 B
Plaintext
36 lines
615 B
Plaintext
server {
|
|
include /etc/nginx/include/no_logging.conf;
|
|
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name start.ffhh;
|
|
|
|
include /etc/nginx/include/start_common.conf;
|
|
}
|
|
|
|
server {
|
|
include /etc/nginx/include/no_logging.conf;
|
|
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name start.hamburg.freifunk.net;
|
|
|
|
include /etc/nginx/include/ssl.rewrite;
|
|
}
|
|
|
|
server {
|
|
include /etc/nginx/include/no_logging.conf;
|
|
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
server_name start.hamburg.freifunk.net;
|
|
|
|
include /etc/nginx/include/ssl_wildcard.conf;
|
|
|
|
include /etc/nginx/include/start_common.conf;
|
|
}
|
|
|