diff options
author | Stephen Finucane <stephen@that.guru> | 2017-05-02 00:47:51 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2017-05-04 11:33:30 +0100 |
commit | 150f6150b813b5cc45eb2e7ebb719a216329e160 (patch) | |
tree | 5806b70c85dd74c95ffaa20ac557549682163c3c /lib/uwsgi | |
parent | 27f4b4284bdd410fe9b6a465de802d3b8bc99e45 (diff) | |
download | patchwork-150f6150b813b5cc45eb2e7ebb719a216329e160.tar patchwork-150f6150b813b5cc45eb2e7ebb719a216329e160.tar.gz |
lib: Update uWSGI, nginx config files
The nginx file was a replacement for '/etc/nginx/nginx.conf' instead of
a "site" file, while the uWSGI file referenced the Python 2 plugin
despite the sample deployment guide, which uses this, being Python
3-based. Correct both issues.
Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'lib/uwsgi')
-rw-r--r-- | lib/uwsgi/patchwork.ini | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/uwsgi/patchwork.ini b/lib/uwsgi/patchwork.ini index 04a9837..d67837c 100644 --- a/lib/uwsgi/patchwork.ini +++ b/lib/uwsgi/patchwork.ini @@ -1,6 +1,7 @@ [uwsgi] -plugins = python27 +# change this to python3 if running Patchwork under Python 2.7 +plugins = python3 project = patchwork base = /opt |