summaryrefslogtreecommitdiff
path: root/guix/etc/nginx/sites-enabled/intranet-ssl.site
blob: 33904031174b07e7ddd68acb042ab7bd957b0ba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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/git;
	server_name intranet.taler.net;
        include conf.d/talerssl;
	location / {
	    proxy_pass http://127.0.0.1:8018;
	    proxy_redirect off;
	    proxy_set_header Host $host;
	    proxy_set_header HTTPS on;
	}
}