aboutsummaryrefslogtreecommitdiff
path: root/stackbin.wsgi.ini.example
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2022-02-15 10:19:09 -0500
committerB Stack <bgstack15@gmail.com>2022-02-15 10:22:01 -0500
commit1a0fbf8853496ac8725e58a1e905fb0fffc5093e (patch)
tree805bbfde5d58859ff37b03c76fc8280e59040b02 /stackbin.wsgi.ini.example
parentupdate doc (diff)
downloadstackbin-1a0fbf8853496ac8725e58a1e905fb0fffc5093e.tar.gz
stackbin-1a0fbf8853496ac8725e58a1e905fb0fffc5093e.tar.bz2
stackbin-1a0fbf8853496ac8725e58a1e905fb0fffc5093e.zip
fix wsgi pidfile, user homedir, and INI loading
Diffstat (limited to 'stackbin.wsgi.ini.example')
-rw-r--r--stackbin.wsgi.ini.example2
1 files changed, 1 insertions, 1 deletions
diff --git a/stackbin.wsgi.ini.example b/stackbin.wsgi.ini.example
index 7e0d203..bb30c20 100644
--- a/stackbin.wsgi.ini.example
+++ b/stackbin.wsgi.ini.example
@@ -15,4 +15,4 @@ req-logger = file:/var/log/stackbin/req.log
logdate = "%%FT%%T"
logger = file:/var/log/stackbin/stackbin.log
# the init script uses a different pidfile owned by root.
-pidfile = /var/run/stackbin-wsgi.pid
+pidfile = /var/stackbin/stackbin-wsgi.pid
bgstack15