remove mod_wsgi-standalone

This commit is contained in:
David Lord 2022-06-12 16:03:51 -07:00
parent b0a144d0c0
commit a9878c018b
No known key found for this signature in database
GPG Key ID: 7A1C87E3F5BC42A8
1 changed files with 5 additions and 16 deletions

View File

@ -7,8 +7,7 @@ start the server without needing to write Apache httpd configuration.
* Tightly integrated with Apache httpd. * Tightly integrated with Apache httpd.
* Supports Windows directly. * Supports Windows directly.
* Requires a compiler to install. Requires Apache installed separately * Requires a compiler and the Apache development headers to install.
on Windows.
* Does not require a reverse proxy setup. * Does not require a reverse proxy setup.
This page outlines the basics of running mod_wsgi-express, not the more This page outlines the basics of running mod_wsgi-express, not the more
@ -24,12 +23,12 @@ understand what features are available.
Installing Installing
---------- ----------
On Linux/Mac, the most straightforward way to install mod_wsgi is to Installing mod_wsgi requires a compiler and the Apache server and
install the ``mod_wsgi-standalone`` package, which will compile an development headers installed. You will get an error if they are not.
up-to-date version of Apache httpd as well. How to install them depends on the OS and package manager that you use.
Create a virtualenv, install your application, then install Create a virtualenv, install your application, then install
``mod_wsgi-standalone``. ``mod_wsgi``.
.. code-block:: text .. code-block:: text
@ -37,16 +36,6 @@ Create a virtualenv, install your application, then install
$ python -m venv venv $ python -m venv venv
$ . venv/bin/activate $ . venv/bin/activate
$ pip install . # install your application $ pip install . # install your application
$ pip install mod_wsgi-standalone
If you want to use the system-installed version of Apache httpd
(required on Windows, optional but faster on Linux/Mac), install the
``mod_wsgi`` package instead. You will get an error if Apache and its
development headers are not available. How to install them depends on
what OS and package manager you use.
.. code-block:: text
$ pip install mod_wsgi $ pip install mod_wsgi