taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit eb247809049e8742f906dab230e4b869dd904ef8
parent 60432ac1989d34581c2eff5a52e99a42beece3bc
Author: Javier Sepulveda <javier.sepulveda@uv.es>
Date:   Thu, 30 Mar 2023 08:48:15 +0200

Fixes error proxy_pass - withdraw http request

Diffstat:
Mnetzbon/nginx-conf/bank.taler-nginx.conf | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/netzbon/nginx-conf/bank.taler-nginx.conf b/netzbon/nginx-conf/bank.taler-nginx.conf @@ -9,6 +9,10 @@ server { location /demobanks/default { proxy_pass http://localhost:5016; + #Fixes withdrawal http request + proxy_set_header X-Forwarded-Proto "https"; + proxy_set_header X-Forwarded-Host "bank.${DOMAIN_NAME}"; + proxy_set_header X-Forwarded-Prefix /; } location / {