File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -931,6 +931,20 @@ Assuming the proxy forwards /tracker, run gunicorn as::
931931this runs roundup at port 8917 on the loopback interface. You should
932932configure 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+
934948Configure an Email Interface
935949----------------------------
936950
You can’t perform that action at this time.
0 commit comments