10 lines
193 B
Python
10 lines
193 B
Python
import os
|
|
|
|
env_port = int(os.environ.get("PORT", 8080))
|
|
|
|
bind = f"0.0.0.0:{env_port}"
|
|
workers = int(os.environ.get("WORKERS", 8))
|
|
preload_app = True
|
|
max_requests = 100
|
|
max_requests_jitter = 50
|