diff options
author | Florian Dold <florian@dold.me> | 2024-12-03 01:43:22 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2024-12-03 01:43:22 +0100 |
commit | 9438e7495f0545e6771e2b225002a0b9540998fe (patch) | |
tree | 1878a774bde59f0e2001e75aaff6a511d3015415 /debian | |
parent | 8c19e89cd0a3cfde3e4376aa691244f864dd5f7d (diff) |
fix socket pathsHEADv0.14.1-dev.11master
Diffstat (limited to 'debian')
-rw-r--r-- | debian/etc/apache2/sites-available/taler-merchant.conf | 2 | ||||
-rw-r--r-- | debian/etc/nginx/sites-available/taler-merchant | 2 | ||||
-rw-r--r-- | debian/taler-merchant.tmpfiles | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/debian/etc/apache2/sites-available/taler-merchant.conf b/debian/etc/apache2/sites-available/taler-merchant.conf index 5d0050a7..948b29cf 100644 --- a/debian/etc/apache2/sites-available/taler-merchant.conf +++ b/debian/etc/apache2/sites-available/taler-merchant.conf @@ -14,7 +14,7 @@ # Apache documentation. # <Location "/"> - ProxyPass "unix:/var/run/taler/merchant-httpd/merchant-http.sock|http://example.com/" + ProxyPass "unix:/var/run/taler-merchant/httpd/merchant-http.sock|http://example.com/" # NOTE: # - Uncomment this line if you use TLS/HTTPS diff --git a/debian/etc/nginx/sites-available/taler-merchant b/debian/etc/nginx/sites-available/taler-merchant index 30ed62db..9bdbc4e2 100644 --- a/debian/etc/nginx/sites-available/taler-merchant +++ b/debian/etc/nginx/sites-available/taler-merchant @@ -15,7 +15,7 @@ server { access_log /var/log/nginx/merchant.log; error_log /var/log/nginx/merchant.err; location /taler-merchant/ { - proxy_pass http://unix:/var/run/taler/merchant-httpd/merchant-http.sock; + proxy_pass http://unix:/var/run/taler-merchant/httpd/merchant-http.sock; proxy_redirect off; proxy_set_header Host $host; diff --git a/debian/taler-merchant.tmpfiles b/debian/taler-merchant.tmpfiles index 0c3f7cf4..fde68ae9 100644 --- a/debian/taler-merchant.tmpfiles +++ b/debian/taler-merchant.tmpfiles @@ -1,2 +1,2 @@ #Type Path Mode UID GID Age Argument -d /run/taler/merchant-httpd 0755 taler-merchant-httpd www-data - - +d /run/taler-merchant/httpd 0755 taler-merchant-httpd www-data - - |