Make admin web UI port configurable via WEB_PORT

Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
This commit is contained in:
lofyer
2026-07-06 23:57:31 +08:00
co-authored by factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
parent 6a3b627311
commit b683fad5d8
3 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -23,4 +23,4 @@ for subnet in ${WG_RELAY_SUBNETS:-}; do
done
IFS="$OLD_IFS"
exec uvicorn app.main:app --host 0.0.0.0 --port 8000
exec uvicorn app.main:app --host 0.0.0.0 --port "${WEB_PORT:-8000}"