Files
Web-on-the-Fly/gunicorn.conf.py
T
ducoterra 73b2b7972c
Build and Push Containers / test (push) Successful in 10s
Build and Push Containers / build-and-push (push) Successful in 13s
up workers to 16
2026-08-01 21:58:27 -04:00

12 lines
179 B
Python

from typing import Any
import app
bind = "0.0.0.0:5000"
workers = 16
timeout = 300
def post_fork(server: Any, worker: Any) -> None:
app.gunicorn_post_fork(server, worker)