mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-24 12:13:44 +00:00
7 lines
194 B
Text
7 lines
194 B
Text
from __future__ import unicode_literals
|
|
import multiprocessing
|
|
|
|
bind = "127.0.0.1:%(gunicorn_port)s"
|
|
workers = multiprocessing.cpu_count() * 2 + 1
|
|
loglevel = "error"
|
|
proc_name = "%(proj_name)s"
|