server { listen 443 ssl; listen [::]:443 ssl; ## listen for ipv4; this line is default and implied # listen [::]:80 default_server ipv6only=on; ## listen for ipv6 root /var/www/gauger/; # Make site accessible from http://localhost/ server_name gauger.taler.net; server_name www.gauger.taler.net; include conf.d/talerssl; location / { proxy_pass http://localhost:1801; proxy_redirect off; proxy_set_header Host $host; } }