commit 252cfaa3cf925dff58754b50ee72757a4d868990 parent b07f3f380128a6e113d72a634356c0f15106dafb Author: Christian Grothoff <christian@grothoff.org> Date: Sun, 22 Dec 2024 21:05:13 +0100 -correct paths Diffstat:
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/roles/auditor/templates/etc/nginx/sites-available/auditor-nginx.conf.j2 b/roles/auditor/templates/etc/nginx/sites-available/auditor-nginx.conf.j2 @@ -39,10 +39,10 @@ server { # Paths without any access control location = /config { - proxy_pass http://unix:/var/run/taler/auditor-httpd/auditor-http.sock; + proxy_pass http://unix:/var/run/taler-auditor/httpd/auditor-http.sock; } location = /deposit-confirmation { - proxy_pass http://unix:/var/run/taler/auditor-httpd/auditor-http.sock; + proxy_pass http://unix:/var/run/taler-auditor/httpd/auditor-http.sock; } } diff --git a/roles/challenger/files/etc/systemd/system/email-challenger-httpd.service b/roles/challenger/files/etc/systemd/system/email-challenger-httpd.service @@ -2,7 +2,7 @@ Description=Email Challenger backend [Service] -User=challenger-httpd +User=challenger-email Group=challenger-email Type=simple Restart=always diff --git a/roles/challenger/files/etc/systemd/system/postal-challenger-httpd.service b/roles/challenger/files/etc/systemd/system/postal-challenger-httpd.service @@ -2,7 +2,7 @@ Description=Postal Challenger backend [Service] -User=challenger-httpd +User=challenger-postal Group=challenger-postal Type=simple Restart=always diff --git a/roles/challenger/files/etc/systemd/system/sms-challenger-httpd.service b/roles/challenger/files/etc/systemd/system/sms-challenger-httpd.service @@ -2,7 +2,7 @@ Description=SMS Challenger backend [Service] -User=challenger-httpd +User=challenger-sms Group=challenger-sms Type=simple Restart=always diff --git a/roles/exchange/templates/etc/nginx/sites-available/exchange-nginx.conf.j2 b/roles/exchange/templates/etc/nginx/sites-available/exchange-nginx.conf.j2 @@ -29,6 +29,6 @@ server { access_log /var/log/nginx/exchange.{{ DOMAIN_NAME }}.log apm; location / { - proxy_pass http://unix:/var/run/taler/exchange-httpd/exchange-http.sock; + proxy_pass http://unix:/var/run/taler-exchange/httpd/exchange-http.sock; } }