blob: 6737d91295af04fdc6d05959b99fe29a92f2e2f5 (
plain)
1
2
3
4
5
6
7
|
location /taler-exchange/ {
proxy_pass http://unix:/run/taler/exchange/exchange-http.sock;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host "example.com";
proxy_set_header X-Forwarded-Proto "https";
}
|