mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
11 lines
251 B
Python
11 lines
251 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 = "/tmp/gunicorn_newsblur.pid"
|
||
|
workers = numCPUs() # * 2 + 1
|