Skip to content

Commit cbb881c

Browse files
committed
Add basic uwsgi setup.
1 parent e97886a commit cbb881c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

doc/installation.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -931,6 +931,20 @@ Assuming the proxy forwards /tracker, run gunicorn as::
931931
this runs roundup at port 8917 on the loopback interface. You should
932932
configure the reverse proxy to talk to 127.0.0.1 at port 8917.
933933

934+
uWSGI Installation
935+
^^^^^^^^^^^^^^^^^^
936+
937+
For a basic roundup install using uWSGI behind a front end server,
938+
install uwsgi and the python3 (or python) plugin. Then run::
939+
940+
uwsgi --http-socket 127.0.0.1:8917 \
941+
--plugin python3 --mount=/tracker=wsgi.py \
942+
--manage-script-name --callable app
943+
944+
using the same wsgi.py as was used for gunicorn. If you get path not
945+
found errors, check the mount option. The /tracker entry must match
946+
the path used for the [tracker] web value in the tracker's config.ini.
947+
934948
Configure an Email Interface
935949
----------------------------
936950

0 commit comments

Comments
 (0)