root / snf-stats / examples / stats.gunicorn @ 7fcec5d7
History | View | Annotate | Download (330 Bytes)
1 |
CONFIG = { |
---|---|
2 |
'mode': 'django', |
3 |
'environment': { |
4 |
'DJANGO_SETTINGS_MODULE': 'synnefo.settings', |
5 |
}, |
6 |
'working_dir': '/etc/synnefo', |
7 |
'user': 'www-data', |
8 |
'group': 'www-data', |
9 |
'args': ( |
10 |
'--bind=127.0.0.1:8080', |
11 |
'--workers=12', |
12 |
'--workers=1', |
13 |
'--worker-class=gevent', |
14 |
'--log-level=DEBUG', |
15 |
'--timeout=90' |
16 |
), |
17 |
} |