[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-merchant] branch master updated: fix socket paths
From: |
gnunet |
Subject: |
[taler-merchant] branch master updated: fix socket paths |
Date: |
Tue, 03 Dec 2024 01:43:26 +0100 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository merchant.
The following commit(s) were added to refs/heads/master by this push:
new 9438e749 fix socket paths
9438e749 is described below
commit 9438e7495f0545e6771e2b225002a0b9540998fe
Author: Florian Dold <florian@dold.me>
AuthorDate: Tue Dec 3 01:43:22 2024 +0100
fix socket paths
---
debian/etc/apache2/sites-available/taler-merchant.conf | 2 +-
debian/etc/nginx/sites-available/taler-merchant | 2 +-
debian/taler-merchant.tmpfiles | 2 +-
src/backend/merchant.conf | 2 +-
4 files changed, 4 insertions(+), 4 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 - -
diff --git a/src/backend/merchant.conf b/src/backend/merchant.conf
index 1231eddd..cfb13c18 100644
--- a/src/backend/merchant.conf
+++ b/src/backend/merchant.conf
@@ -30,7 +30,7 @@ LEGAL_PRESERVATION = 11 years
# Which unix domain path should we bind to? Only used if "SERVE" is 'unix'.
-UNIXPATH = ${TALER_RUNTIME_DIR}/merchant-httpd/merchant-http.sock
+UNIXPATH = ${TALER_RUNTIME_DIR}/httpd/merchant-http.sock
# What should be the file access permissions (see chmod) for "UNIXPATH"?
UNIXPATH_MODE = 660
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-merchant] branch master updated: fix socket paths,
gnunet <=