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;
}

View File

@ -418,7 +418,7 @@ DEBIAN_UNFURL_PKG+=(libxdamage-dev libxrandr-dev libgbm-dev libpango1.0-dev liba
FREEBSD_PKG=()
FREEBSD_PKG+=(zsh sudo git git-lfs screen curl wget calc neovim)
FREEBSD_PKG+=(openssh-portable py311-pip rust llvm17 jq base64 libzmq4)
FREEBSD_PKG+=(boost-libs autoconf automake gmake gcc libevent libtool pkgconf)
FREEBSD_PKG+=(boost-libs autoconf automake gmake gcc13 libevent libtool pkgconf)
FREEBSD_PKG+=(nginx rsync py311-certbot-nginx mariadb1011-server)
FREEBSD_PKG+=(geoipupdate redis)