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