docker: Add missing nginx route for /api/v1/services

This commit is contained in:
wiz 2025-04-06 23:44:06 +09:00
parent 6946878caf
commit 7dab8f19a2
No known key found for this signature in database
GPG key ID: A394E332255A6173
2 changed files with 4 additions and 1 deletions

View file

@ -58,6 +58,9 @@
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
location /api/v1/services {
proxy_pass https://mempool.space;
}
location /api/v1 {
proxy_pass http://127.0.0.1:8999/api/v1;
}