From 57973db4f03997c5800a744103b48d0ea44446c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hern=C3=A2ni=20Marques?= Date: Fri, 10 Jul 2026 20:10:48 +0200 Subject: [PATCH] bank landing: nginx proxy /intro/demo-withdraw.json to local mint API --- configs/bank-landing/nginx-landing.conf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/configs/bank-landing/nginx-landing.conf b/configs/bank-landing/nginx-landing.conf index a921dfb..97047f1 100644 --- a/configs/bank-landing/nginx-landing.conf +++ b/configs/bank-landing/nginx-landing.conf @@ -33,6 +33,14 @@ server { location = /privacy/ { return 302 /privacy; } + # Fresh community-pool withdraw for one-click wallet funding + location = /intro/demo-withdraw.json { + proxy_pass http://127.0.0.1:19096/demo-withdraw.json; + proxy_http_version 1.1; + proxy_set_header Host $host; + add_header Cache-Control "no-store" always; + add_header Access-Control-Allow-Origin * always; + } location /intro/ { alias /var/www/bank-landing/; }