Expose it as a service.
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
import multiprocessing
|
||||
import os
|
||||
|
||||
env_port = int(os.environ.get("PORT", 8080))
|
||||
|
||||
bind = f"0.0.0.0:{env_port}"
|
||||
workers = max(2, multiprocessing.cpu_count() * 2 + 1)
|
||||
workers = int(os.environ.get("WORKERS", 8))
|
||||
preload_app = True
|
||||
max_requests = 100
|
||||
max_requests_jitter = 50
|
||||
|
||||
Reference in New Issue
Block a user