bank landing: nginx proxy /intro/demo-withdraw.json to local mint API

This commit is contained in:
Hernâni Marques 2026-07-10 20:10:48 +02:00
parent ada583884a
commit 57973db4f0
No known key found for this signature in database

View file

@ -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/;
}