diff options
Diffstat (limited to 'debian/auditor-conf')
-rw-r--r-- | debian/auditor-conf/apache.conf | 4 | ||||
-rw-r--r-- | debian/auditor-conf/nginx.conf | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/debian/auditor-conf/apache.conf b/debian/auditor-conf/apache.conf new file mode 100644 index 000000000..f68c59558 --- /dev/null +++ b/debian/auditor-conf/apache.conf @@ -0,0 +1,4 @@ +<Location "/taler-auditor/"> +ProxyPass "unix:/var/lib/taler-auditor/auditor.sock|http://example.com/" +RequestHeader add "X-Forwarded-Proto" "https" +</Location> diff --git a/debian/auditor-conf/nginx.conf b/debian/auditor-conf/nginx.conf new file mode 100644 index 000000000..3fdffdad3 --- /dev/null +++ b/debian/auditor-conf/nginx.conf @@ -0,0 +1,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"; +}
\ No newline at end of file |