24 lines
500 B
Plaintext
24 lines
500 B
Plaintext
|
server {
|
||
|
include /etc/nginx/include/no_logging.conf;
|
||
|
|
||
|
listen 80;
|
||
|
listen [::]:80;
|
||
|
|
||
|
server_name updates.hamburg.freifunk.net 1.updates.services.ffhh;
|
||
|
|
||
|
include /etc/nginx/include/updates_common.conf;
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
include /etc/nginx/include/no_logging.conf;
|
||
|
|
||
|
listen 443 ssl;
|
||
|
listen [::]:443 ssl;
|
||
|
server_name updates.hamburg.freifunk.net 1.updates.services.ffhh;
|
||
|
|
||
|
include /etc/nginx/include/ssl_wildcard.conf;
|
||
|
|
||
|
include /etc/nginx/include/updates_common.conf;
|
||
|
}
|
||
|
|