Refactor nginx.conf and other ops scripts for lightning
This commit is contained in:
20
production/nginx/location-api-v1-lightning.conf
Normal file
20
production/nginx/location-api-v1-lightning.conf
Normal file
@@ -0,0 +1,20 @@
|
||||
# route lightning API endpoints to lightning backend
|
||||
location /api/v1/lightning {
|
||||
try_files /dev/null @mempool-api-v1-lightning;
|
||||
}
|
||||
location @mempool-api-v1-lightning {
|
||||
proxy_pass $mempoolMainnetLightning;
|
||||
|
||||
proxy_set_header Host $http_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;
|
||||
}
|
||||
Reference in New Issue
Block a user