Second test for Server Header change

This commit is contained in:
2025-11-22 16:16:10 +08:00
parent 1116353d0f
commit ebef3dfa57
3 changed files with 18 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
set -e
# Start API server in background
gunicorn "app:create_api_app()" -c gunicorn.conf.py --bind 0.0.0.0:5000 --workers 4 --access-logfile - &
gunicorn "app:create_api_app()" --bind 0.0.0.0:5000 --workers 4 --access-logfile - &
# Start UI server in foreground
gunicorn "app:create_ui_app()" -c gunicorn.conf.py --bind 0.0.0.0:5100 --workers 4 --access-logfile -
gunicorn "app:create_ui_app()" --bind 0.0.0.0:5100 --workers 4 --access-logfile -