You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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