intranet-ssl.site (409B)
1 server { 2 listen 443 ssl; 3 listen [::]:443 ssl; ## listen for ipv4; this line is default and implied 4 # listen [::]:80 default_server ipv6only=on; ## listen for ipv6 5 6 root /var/git; 7 server_name intranet.taler.net; 8 include conf.d/talerssl; 9 location / { 10 proxy_pass http://127.0.0.1:8018; 11 proxy_redirect off; 12 proxy_set_header Host $host; 13 proxy_set_header HTTPS on; 14 } 15 }