aboutsummaryrefslogtreecommitdiff
path: root/config/hex-zero.etc.default
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-12-10 13:25:27 -0500
committerB Stack <bgstack15@gmail.com>2020-12-10 13:25:27 -0500
commit1f05dba5702e3a9b13e9795310200821dd1e520c (patch)
treeb79ee1ade76d9cab46f282e269ba9b67ec1e1e8b /config/hex-zero.etc.default
parentadd initial Makefile for install, uninstall (diff)
downloadhex-zero-1f05dba5702e3a9b13e9795310200821dd1e520c.tar.gz
hex-zero-1f05dba5702e3a9b13e9795310200821dd1e520c.tar.bz2
hex-zero-1f05dba5702e3a9b13e9795310200821dd1e520c.zip
add debian/ and improve installation
Diffstat (limited to 'config/hex-zero.etc.default')
-rw-r--r--config/hex-zero.etc.default4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/hex-zero.etc.default b/config/hex-zero.etc.default
index c8d8da7..b0ad710 100644
--- a/config/hex-zero.etc.default
+++ b/config/hex-zero.etc.default
@@ -2,6 +2,6 @@ export UWSGI_USER=hex-zero
export UWSGI_BIN=/usr/bin/uwsgi_python3
export LISTEN_HOST=localhost
export LISTEN_PORT=3031
-export PIDFILE=/run/hex-zero.pid
+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/0x0/hex-zero.py --callable app --log-x-forwarded-for --logto ${LOGFILE} --touch-reload /var/www/0x0/hex-zero.py --touch-reload /var/www/0x0/hex-zero.conf --pidfile ${PIDFILE}"
+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}"
bgstack15