exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit a865217ea0ffebc1fae85990db2ef9e46b846c7d
parent abacd05742466d67e80089e0f8ed1082b7ec4a33
Author: Florian Dold <florian@dold.me>
Date:   Wed,  4 Aug 2021 19:00:32 +0200

debian: fix sample http configs

Diffstat:
Mdebian/etc-taler-exchange/apache2/sites-available/taler-exchange.conf | 2+-
Mdebian/etc-taler-exchange/nginx/sites-available/taler-exchange | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/etc-taler-exchange/apache2/sites-available/taler-exchange.conf b/debian/etc-taler-exchange/apache2/sites-available/taler-exchange.conf @@ -1,4 +1,4 @@ <Location "/taler-exchange/"> -ProxyPass "unix:/var/lib/taler-exchange/exchange.sock|http://example.com/" +ProxyPass "unix:/run/taler/exchange-httpd/exchange-http.sock|http://example.com/" RequestHeader add "X-Forwarded-Proto" "https" </Location> diff --git a/debian/etc-taler-exchange/nginx/sites-available/taler-exchange b/debian/etc-taler-exchange/nginx/sites-available/taler-exchange @@ -5,7 +5,7 @@ server { #server_name example.com location /taler-exchange/ { - proxy_pass http://unix:/run/taler/exchange/exchange-http.sock; + proxy_pass http://unix:/run/taler/exchange-httpd/exchange-http.sock; proxy_redirect off; proxy_set_header Host $host; #proxy_set_header X-Forwarded-Host "example.com";