mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-31 22:20:12 +00:00
15 lines
378 B
Python
15 lines
378 B
Python
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"
|
|
accesslog = "/home/sclay/newsblur/logs/production.log"
|
|
loglevel = "debug"
|
|
name = "newsblur"
|
|
timeout = 60
|
|
max_requests = 1000
|
|
workers = numCPUs()
|