Files
blog-app/gunicorn.conf.py
2026-08-17 17:11:27 +08:00

16 lines
356 B
Python

"""Gunicorn configuration for blog-app evaluation.
Stage 3 evaluation only — not committed to deploy.sh unless go decision is made.
"""
bind = "0.0.0.0:8090"
workers = 2
worker_class = "gthread"
threads = 4
timeout = 300 # LLM streaming needs long timeout
graceful_timeout = 30
keepalive = 5
accesslog = "-"
errorlog = "-"
loglevel = "info"