aboutsummaryrefslogtreecommitdiff
path: root/stackbin.wsgi.ini.dev
blob: 7ed342184a7d26e9bbc6071261e51427979a444d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[uwsgi]
# CentOS 7 uwsgi needs "python36" added to this list.
#plugins = logfile, python36
# Devuan Ceres does not.
plugins = logfile
http-socket = 0.0.0.0:4680
wsgi-file = stackbin.py
callable = app
touch-reload = stackbin.py
touch-reload = stackbin.conf
touch-reload = stackbin.wsgi.ini
touch-reload = templates/admin.html
touch-reload = templates/layout.html
touch-reload = templates/login_form.html
touch-reload = templates/new_paste.html
touch-reload = templates/_pagination.html
touch-reload = templates/show_paste.html
req-logger = file:log/req.log
# to get strftime format fields, you need double percent signs
logdate = "%%FT%%T"
logger = file:log/stackbin.log
# the init script uses a different pidfile owned by root.
pidfile = var/stackbin-wsgi.pid
bgstack15