mirror of
https://github.com/mempool/mempool.git
synced 2025-02-22 14:22:44 +01:00
Fix nginx redirects for /liquid etc.
This commit is contained in:
parent
ca33a629cf
commit
e08902b85b
1 changed files with 3 additions and 3 deletions
|
@ -1,12 +1,12 @@
|
|||
# redirect mempool.space/liquid to liquid.network
|
||||
location /liquid {
|
||||
location = /liquid {
|
||||
rewrite /liquid/(.*) https://liquid.network/$1;
|
||||
rewrite /liquid https://liquid.network/;
|
||||
return 308;
|
||||
}
|
||||
|
||||
# redirect mempool.space/liquidtestnet to liquid.network/testnet
|
||||
location /liquidtestnet {
|
||||
location = /liquidtestnet {
|
||||
rewrite /liquidtestnet/(.*) https://liquid.network/testnet/$1;
|
||||
rewrite /liquidtestnet/ https://liquid.network/testnet/;
|
||||
rewrite /liquidtestnet https://liquid.network/testnet;
|
||||
|
@ -14,7 +14,7 @@ location /liquidtestnet {
|
|||
}
|
||||
|
||||
# redirect mempool.space/bisq to bisq.markets
|
||||
location /bisq {
|
||||
location = /bisq {
|
||||
rewrite /bisq/(.*) https://bisq.markets/$1;
|
||||
rewrite /bisq https://bisq.markets/;
|
||||
return 308;
|
||||
|
|
Loading…
Add table
Reference in a new issue