Skip to content

Commit 678652a

Browse files
committed
doc: remove uWSGI references as it is in maint mode and not being updated
Replaced with Waitress where appropriate.
1 parent eedc6de commit 678652a

File tree

2 files changed

+5
-22
lines changed

2 files changed

+5
-22
lines changed

doc/admin_guide.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ on the fly, compression is enabled by default, to disable it set::
738738
dynamic_compression = No
739739

740740
in the tracker's ``config.ini``. You should disable compression if
741-
your proxy (e.g. nginx or apache) or wsgi server (uwsgi) is configured
741+
your proxy (e.g. nginx or apache) is configured
742742
to compress responses on the fly. The python standard library includes
743743
gzip support. For brotli or zstd you will need to install packages. See
744744
the `installation documentation`_ for details.
@@ -900,9 +900,9 @@ There are two ways to add a CSP:
900900
Fixed CSP
901901
---------
902902

903-
If you are using a web server (Apache, Nginx) to run Roundup, you can
904-
add a ``Content-Security-Policy`` header using that server. WSGI
905-
servers like uWSGI can also be configured to add headers. An example
903+
If you are using a web server (Apache, Nginx) to run Roundup, you
904+
can add a ``Content-Security-Policy`` header using that
905+
server. WSGI middleware can be written to add headers. An example
906906
header would look like::
907907

908908
Content-Security-Policy: default-src 'self' 'unsafe-inline' 'strict-dynamic';

doc/installation.txt

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,7 @@ FastCGI (Cherokee, Hiawatha, lighttpd)
12831283

12841284
The Hiawatha and lighttpd web servers can run Roundup using FastCGI.
12851285
Cherokee can run FastCGI but it also supports wsgi directly using a
1286-
wsgi server like uWSGI, Gnuicorn etc.
1286+
wsgi server like Waitress, Gnuicorn etc.
12871287

12881288
To run Roundup using FastCGI, the flup_ package can be used under
12891289
Python 2 and Python 3. We don't have a detailed config for this, but
@@ -1499,23 +1499,6 @@ including putting it behind a proxy, IPV6 support etc.
14991499
.. _`See the Waitress docs`:
15001500
https://docs.pylonsproject.org/projects/waitress/en/stable/
15011501

1502-
.. index:: pair: web interface; uWSGI
1503-
single: wsgi; uWSGI
1504-
1505-
uWSGI Installation
1506-
~~~~~~~~~~~~~~~~~~
1507-
1508-
For a basic roundup install using uWSGI behind a front end server,
1509-
install uwsgi and the python3 (or python) plugin. Then run::
1510-
1511-
uwsgi --http-socket 127.0.0.1:8917 \
1512-
--plugin python3 --mount=/tracker=wsgi.py \
1513-
--manage-script-name --callable app
1514-
1515-
using the same wsgi.py as was used for Gunicorn. If you get path not
1516-
found errors, check the mount option. The /tracker entry must match
1517-
the path used for the [tracker] web value in the tracker's config.ini.
1518-
15191502
Configure an Email Interface
15201503
============================
15211504

0 commit comments

Comments
 (0)