blob: b0ad710b0126f9fad29b4300a324aeac078a0f79 (
plain)
1
2
3
4
5
6
7
|
export UWSGI_USER=hex-zero
export UWSGI_BIN=/usr/bin/uwsgi_python3
export LISTEN_HOST=localhost
export LISTEN_PORT=3031
export PIDFILE=/var/run/hex-zero.pid
export LOGFILE=/var/log/hex-zero/hex-zero.log
export UWSGI_OPTS="--http-socket ${LISTEN_HOST}:${LISTEN_PORT} --wsgi-file /var/www/hex-zero/hex_zero.py --callable app --log-x-forwarded-for --logto ${LOGFILE} --touch-reload /var/www/hex-zero/hex_zero.py --touch-reload /var/www/hex-zero/hex-zero.conf --pidfile ${PIDFILE} --uid ${UWSGI_USER}"
|