Adding chunk file support

This commit is contained in:
2025-04-16 21:40:35 -04:00
parent f90cc7691c
commit d4be29386b
7 changed files with 710 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ key = os.getenv("SSL_KEY", "key.pem")
use_ssl = os.path.exists(cert) and os.path.exists(key)
base_cmd = [
"gunicorn", "wsgi:app", "--bind", "0.0.0.0:7777"
"gunicorn", "wsgi:app", "--bind", "0.0.0.0:7777", "--workers", "4", "--timeout", "300",
]
if use_ssl: