commit b1a86ed8d0f79a6335517bb7fb81c02763c67f4e parent 925278ede08187f38ff5f2839fc5f3c2649f6e32 Author: MS <ms@taler.net> Date: Thu, 3 Nov 2022 11:56:29 +0100 readme Diffstat:
| M | docker/hybrid/README | | | 11 | +++++++++-- |
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/docker/hybrid/README b/docker/hybrid/README @@ -113,9 +113,9 @@ Nginx configuration example deploys this sandbox under proxy_set_header Host $host; } } - + server { - server_name bank.example.com; + server_name webui-bank.example.com; listen 443 ssl; listen [::]:443 ssl; @@ -124,11 +124,18 @@ Nginx configuration example deploys this sandbox under index index.html; proxy_pass http://localhost:15002/; } + } + + server { + server_name bank.example.com; + listen 443 ssl; + listen [::]:443 ssl; location / { proxy_set_header X-Forwarded-Host "bank.example.com"; proxy_set_header X-Forwarded-Proto "https"; proxy_set_header X-Forwarded-Prefix /; + proxy_set_header X-Frontend-Uri https://webui-bank.example.com; proxy_pass http://localhost:15000/; } }