mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
18 lines
491 B
Python
18 lines
491 B
Python
import psutil
|
|
|
|
GIGS_OF_MEMORY = psutil.TOTAL_PHYMEM/1024/1024/1024.
|
|
NUM_CPUS = psutil.NUM_CPUS
|
|
|
|
bind = "127.0.0.1:8000"
|
|
pidfile = "/home/sclay/newsblur/logs/gunicorn.pid"
|
|
logfile = "/home/sclay/newsblur/logs/production.log"
|
|
accesslog = "/home/sclay/newsblur/logs/production.log"
|
|
errorlog = "/home/sclay/newsblur/logs/errors.log"
|
|
loglevel = "debug"
|
|
name = "newsblur"
|
|
timeout = 120
|
|
max_requests = 1000
|
|
if GIGS_OF_MEMORY > NUM_CPUS:
|
|
workers = NUM_CPUS
|
|
else:
|
|
workers = int(NUM_CPUS / 2)
|