summaryrefslogtreecommitdiff
path: root/debian/conf/nginx.conf
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-01-02 21:21:34 +0100
committerChristian Grothoff <christian@grothoff.org>2021-01-02 21:21:34 +0100
commit0ccc6504209c155ee036893288ac0bc7e988d43a (patch)
tree5c385e80147f49271536afd626fe04b4ce27a14f /debian/conf/nginx.conf
parent7334cfc40995c98aa550fedc7b249d9c08100028 (diff)
downloadmerchant-0ccc6504209c155ee036893288ac0bc7e988d43a.tar.gz
merchant-0ccc6504209c155ee036893288ac0bc7e988d43a.tar.bz2
merchant-0ccc6504209c155ee036893288ac0bc7e988d43a.zip
fix #6673: fix access rights on package install
Diffstat (limited to 'debian/conf/nginx.conf')
-rw-r--r--debian/conf/nginx.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/conf/nginx.conf b/debian/conf/nginx.conf
index a57a2e19..82aaa306 100644
--- a/debian/conf/nginx.conf
+++ b/debian/conf/nginx.conf
@@ -2,7 +2,7 @@ location ~ /taler-merchant/private/ {
if ($http_authorization !~ "(?i)ApiKey %SECURITYTOKEN%") {
return 401;
}
- proxy_pass http://unix:/var/lib/taler-merchant/merchant.sock;
+ proxy_pass http://unix:/var/lib/taler-merchant/httpd/merchant.sock;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host "example.com";
@@ -10,7 +10,7 @@ location ~ /taler-merchant/private/ {
}
location /taler-merchant/ {
- proxy_pass http://unix:/var/lib/taler-merchant/merchant.sock;
+ proxy_pass http://unix:/var/lib/taler-merchant/httpd/merchant.sock;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host "example.com";