summaryrefslogtreecommitdiff
path: root/historic/docker/nginx/proxy.conf
blob: b4bf54a0f0e4ba571e607f173c9b0cd16bb33acb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
server {
        listen *:80;
	root /dev/null;

	location / {
	    autoindex off;
            proxy_pass http://exchange:8081;
	}

	location /admin {
	    autoindex off;
	    proxy_pass http://exchange:18080;
	}
}