mirror of
https://github.com/mempool/mempool.git
synced 2025-02-23 14:40:38 +01:00
* Refactor production nginx configuration files * Update README for new networks, SQL, etc.
12 lines
329 B
Text
12 lines
329 B
Text
location /signet/api/v1/ws {
|
|
proxy_pass http://mempool-bitcoin-signet/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
}
|
|
location /signet/api/v1 {
|
|
proxy_pass http://mempool-bitcoin-signet/api/v1;
|
|
}
|
|
location /signet/api/ {
|
|
proxy_pass http://electrs-bitcoin-signet/;
|
|
}
|