taler-deployment

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

commit 3e1819b3073895e3ae9a468504fab8f3f8564e26
parent b9ed43c2e98677aadea54530a8163f6f7830f32a
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 / {