aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2022-02-15 10:05:25 -0500
committerB Stack <bgstack15@gmail.com>2022-02-15 10:05:25 -0500
commit0bc394662cf42c50873d63520609b0e83139f917 (patch)
treeeb502e0744b388f9d9d8ef686e9e3044c9059d97
parentadd initial system-ready values and install steps (diff)
downloadstackbin-0bc394662cf42c50873d63520609b0e83139f917.tar.gz
stackbin-0bc394662cf42c50873d63520609b0e83139f917.tar.bz2
stackbin-0bc394662cf42c50873d63520609b0e83139f917.zip
drop actual ini file
The intent is to store the example config files in SCM.
-rw-r--r--.gitignore1
-rw-r--r--stackbin.wsgi.ini18
2 files changed, 1 insertions, 18 deletions
diff --git a/.gitignore b/.gitignore
index 5768130..b7639ec 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@ config.cfg
log/
*.pid
*.conf
+*.ini
diff --git a/stackbin.wsgi.ini b/stackbin.wsgi.ini
deleted file mode 100644
index af12327..0000000
--- a/stackbin.wsgi.ini
+++ /dev/null
@@ -1,18 +0,0 @@
-[uwsgi]
-# CentOS 7 uwsgi needs "python36" added to this list.
-plugins = logfile, python36
-# Devuan Ceres does not.
-#plugins = logfile
-http-socket = 127.0.0.1:4680
-wsgi-file = stackbin.py
-callable = app
-touch-reload = stackbin.py
-touch-reload = stackbin.conf
-touch-reload = stackbin.wsgi.ini
-# the template files are not necessary, because flask always loads it from disk for each request
-req-logger = file:log/req.log
-# to get strftime format fields, you need double percent signs
-logdate = "%%FT%%T"
-logger = file:log/stackbin.log
-# the init script uses a different pidfile owned by root.
-pidfile = stackbin.pid
bgstack15