Merge pull request #3224 from mempool/ops/fix-bisq-address-prefix-api

ops: Add missing /api/address-prefix nginx route for bisq
This commit is contained in:
softsimon 2023-03-04 16:06:23 +09:00 committed by GitHub
commit 36818c7b98

View File

@ -9,6 +9,10 @@ location /api/tx/ {
rewrite ^/api/(.*) /$1 break;
try_files /dev/null @esplora-api-cache-disabled;
}
location /api/address-prefix/ {
rewrite ^/api/(.*) /$1 break;
try_files /dev/null @esplora-api-cache-disabled;
}
# rewrite APIs to match what backend expects
location /api/currencies {