mirror of
https://github.com/mempool/mempool.git
synced 2025-01-19 05:34:03 +01:00
22 lines
599 B
Plaintext
22 lines
599 B
Plaintext
# route lightning API endpoints to lightning backend
|
|
location /testnet/api/v1/lightning {
|
|
rewrite ^/testnet/(.*) /$1 break;
|
|
try_files /dev/null @mempool-testnet-api-v1-lightning;
|
|
}
|
|
location @mempool-testnet-api-v1-lightning {
|
|
proxy_pass $mempoolTestnetLightning;
|
|
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
proxy_cache_background_update on;
|
|
proxy_cache_use_stale updating;
|
|
proxy_cache api;
|
|
proxy_cache_valid 200 10s;
|
|
proxy_redirect off;
|
|
|
|
expires 10s;
|
|
}
|