mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 02:11:49 +01:00
4de1d017ad
* Refactor production nginx configuration files * Update README for new networks, SQL, etc.
13 lines
335 B
Plaintext
13 lines
335 B
Plaintext
location /testnet/api/v1/ws {
|
|
proxy_pass http://mempool-bitcoin-testnet/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
}
|
|
location /testnet/api/v1 {
|
|
proxy_pass http://mempool-bitcoin-testnet/api/v1;
|
|
}
|
|
location /testnet/api/ {
|
|
proxy_pass http://electrs-bitcoin-testnet/;
|
|
}
|