blob: 173173f1e3585125149e33bd79e17c3bc4372977 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# call with: uwsgi_python3 --ini fuss.wsgi.ini
[uwsgi]
plugins = python3,logfile
http-socket = 0.0.0.0:5003
wsgi-file = /usr/libexec/fuss/fuss.py
callable = app
touch-reload = /usr/libexec/fuss/fuss.py
touch-reload = /etc/fuss.conf
touch-reload = /etc/fuss.wsgi.ini
touch-reload = /usr/share/fuss/templates/upload.html.j2
touch-reload = /usr/share/fuss/templates/upload.js.j2
touch-reload = /usr/share/fuss/templates/index.html.j2
req-logger = file:/var/log/fuss/req.log
# to get strftime format fields, you need double percent signs
logdate = "%%FT%%T"
logger = file:/var/log/fuss/fuss.log
# the init script uses a different pidfile owned by root.
pidfile = /var/www/fuss/fuss.pid
|