switch names to WEB_SERVER_

This commit is contained in:
Georges-Antoine Assi
2025-08-26 23:53:55 -04:00
parent a4a714475f
commit 798ffa31b3
3 changed files with 13 additions and 14 deletions

View File

@@ -91,11 +91,11 @@ YOUTUBE_BASE_URL=https://www.youtube.com
# Logging
LOGLEVEL=DEBUG
# Gunicorn (optional)
# Web server (optional)
# Workers -> (2 × CPU cores) + 1
GUNICORN_WORKERS=2
GUNICORN_TIMEOUT=300
GUNICORN_KEEPALIVE=2
GUNICORN_MAX_REQUESTS=1000
GUNICORN_MAX_REQUESTS_JITTER=100
GUNICORN_WORKER_CONNECTIONS=1000
WEB_SERVER_CONCURRENCY=2
WEB_SERVER_TIMEOUT=300
WEB_SERVER_KEEPALIVE=2
WEB_SERVER_MAX_REQUESTS=1000
WEB_SERVER_MAX_REQUESTS_JITTER=100
WEB_SERVER_WORKER_CONNECTIONS=1000