summaryrefslogtreecommitdiff
path: root/etc/nginx/sites-enabled/mint-test.site
blob: 332d72c8bf429c15106f409ec5a8f1fa3eb93a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
server {
	listen   80; ## listen for ipv4; this line is default and implied
 	# 	listen   [::]:80 default_server ipv6only=on; ## listen for ipv6

	root /dev/null;

	server_name mint.test.taler.net;

	location / {
	    proxy_pass http://localhost:14241;
	    proxy_redirect off;
	    proxy_set_header Host $host;
	}

}