NewsBlur/config/gunicorn_conf.py

14 lines
347 B
Python
Raw Normal View History

2011-02-09 15:45:41 -05:00
import os
def numCPUs():
if not hasattr(os, "sysconf"):
raise RuntimeError("No sysconf detected.")
return os.sysconf("SC_NPROCESSORS_ONLN")
bind = "127.0.0.1:8000"
pidfile = "/home/sclay/newsblur/logs/gunicorn.pid"
logfile = "/home/sclay/newsblur/logs/production.log"
2011-02-09 15:45:41 -05:00
loglevel = "debug"
name = "newsblur"
workers = numCPUs() * 2