aboutsummaryrefslogtreecommitdiff
path: root/stackbin.wsgi.ini
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2022-02-14 22:49:17 -0500
committerB Stack <bgstack15@gmail.com>2022-02-14 22:49:17 -0500
commitc364901df2ef04553fc7508c31446ad14ac93737 (patch)
tree7f2441778eba0661195024484122e55754e52bcd /stackbin.wsgi.ini
parentadd initial centos7 doc (diff)
downloadstackbin-c364901df2ef04553fc7508c31446ad14ac93737.tar.gz
stackbin-c364901df2ef04553fc7508c31446ad14ac93737.tar.bz2
stackbin-c364901df2ef04553fc7508c31446ad14ac93737.zip
r-proxy support with /set endpoint, and extra dir
The extra dir is still WIP
Diffstat (limited to 'stackbin.wsgi.ini')
-rw-r--r--stackbin.wsgi.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/stackbin.wsgi.ini b/stackbin.wsgi.ini
index cf35ffb..1ad33c0 100644
--- a/stackbin.wsgi.ini
+++ b/stackbin.wsgi.ini
@@ -1,9 +1,9 @@
[uwsgi]
# CentOS 7 uwsgi needs "python36" added to this list.
plugins = logfile, python36
-# Devuan does not.
+# Devuan Ceres does not.
#plugins = logfile
-http-socket = 0.0.0.0:5000
+http-socket = 127.0.0.1:4680
wsgi-file = stackbin.py
callable = app
touch-reload = stackbin.py
bgstack15