From 85df4b3dc87003ae738f2676a99b88a83f3ac05a Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Sun, 13 Feb 2022 21:47:21 -0500 Subject: add expiry, and wsgi usage to support that The flask dev server seems incapable of using the @timer decorator, so we need the whole wsgi implementation, for which I've added a script. Arbitrary expiration options are available in the config file. --- stackbin.wsgi.ini | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 stackbin.wsgi.ini (limited to 'stackbin.wsgi.ini') diff --git a/stackbin.wsgi.ini b/stackbin.wsgi.ini new file mode 100644 index 0000000..cac4511 --- /dev/null +++ b/stackbin.wsgi.ini @@ -0,0 +1,14 @@ +[uwsgi] +plugins = logfile +http-socket = 0.0.0.0:5000 +wsgi-file = pastebin.py +callable = app +touch-reload = pastebin.py +touch-reload = config.cfg +touch-reload = stackbin.wsgi.ini +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 -- cgit