mirror of
https://github.com/mempool/mempool.git
synced 2024-12-28 01:04:28 +01:00
13 lines
313 B
Plaintext
13 lines
313 B
Plaintext
|
location /liquid/api/v1/ws {
|
||
|
proxy_pass http://127.0.0.1:8998/;
|
||
|
proxy_http_version 1.1;
|
||
|
proxy_set_header Upgrade $http_upgrade;
|
||
|
proxy_set_header Connection "Upgrade";
|
||
|
}
|
||
|
location /liquid/api/v1 {
|
||
|
proxy_pass http://127.0.0.1:8998/api/v1;
|
||
|
}
|
||
|
location /liquid/api/ {
|
||
|
proxy_pass http://electrs-liquid-mainnet/;
|
||
|
}
|