From 603ac10d6eb485c9a95f253a14d4967f4aafbfa3 Mon Sep 17 00:00:00 2001 From: 0livd <0livd@users.noreply.github.com> Date: Wed, 28 Jun 2017 00:04:47 +0200 Subject: Turn the WSGI file into a python module (#240) * Turn the WSGI file into a python module * Update conf files to use the new wsgi module Apache and gunicorn now use the same entrypoint * Update Changelog --- conf/supervisord.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'conf/supervisord.conf') diff --git a/conf/supervisord.conf b/conf/supervisord.conf index ec2d452..1b5dbbf 100644 --- a/conf/supervisord.conf +++ b/conf/supervisord.conf @@ -1,5 +1,5 @@ [program:budget] -command=/path/to/your/app/venv/bin/gunicorn -c /path/to/your/app/conf/gunicorn.conf.py run:app +command=/path/to/your/app/venv/bin/gunicorn -c /path/to/your/app/conf/gunicorn.conf.py wsgi:application directory=/path/to/your/app/budget/ user=www autostart=true -- cgit v1.1