06/15 Phase 1 + 2 codes

This commit is contained in:
2026-06-15 11:23:05 -04:00
commit c2064b84b4
62 changed files with 2937 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
"""Gunicorn config. Unix socket behind Nginx."""
import multiprocessing
bind = "unix:/run/classifieds/classifieds.sock"
workers = multiprocessing.cpu_count() * 2 + 1
worker_class = "sync"
timeout = 60
graceful_timeout = 30
keepalive = 5
accesslog = "-"
errorlog = "-"
loglevel = "info"