initial server version

This commit is contained in:
root
2026-02-12 16:00:15 +00:00
commit e5195dd9c5
13 changed files with 1375 additions and 0 deletions

14
gunicorn_conf.py Normal file
View File

@@ -0,0 +1,14 @@
import multiprocessing
bind = "0.0.0.0:4545"
workers = 4
threads = 4
timeout = 60
graceful_timeout = 30
keepalive = 5
worker_tmp_dir = "/dev/shm"
max_requests = 1000
max_requests_jitter = 100
accesslog = "-"
errorlog = "-"
loglevel = "info"