Skip to content

Commit 97298e0

Browse files
committed
Merge branch '2.1.x'
2 parents 9139af1 + a9878c0 commit 97298e0

File tree

1 file changed

+5
-16
lines changed

1 file changed

+5
-16
lines changed

docs/deploying/mod_wsgi.rst

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ start the server without needing to write Apache httpd configuration.
77

88
* Tightly integrated with Apache httpd.
99
* Supports Windows directly.
10-
* Requires a compiler to install. Requires Apache installed separately
11-
on Windows.
10+
* Requires a compiler and the Apache development headers to install.
1211
* Does not require a reverse proxy setup.
1312

1413
This page outlines the basics of running mod_wsgi-express, not the more
@@ -24,29 +23,19 @@ understand what features are available.
2423
Installing
2524
----------
2625

27-
On Linux/Mac, the most straightforward way to install mod_wsgi is to
28-
install the ``mod_wsgi-standalone`` package, which will compile an
29-
up-to-date version of Apache httpd as well.
26+
Installing mod_wsgi requires a compiler and the Apache server and
27+
development headers installed. You will get an error if they are not.
28+
How to install them depends on the OS and package manager that you use.
3029

3130
Create a virtualenv, install your application, then install
32-
``mod_wsgi-standalone``.
31+
``mod_wsgi``.
3332

3433
.. code-block:: text
3534
3635
$ cd hello-app
3736
$ python -m venv venv
3837
$ . venv/bin/activate
3938
$ pip install . # install your application
40-
$ pip install mod_wsgi-standalone
41-
42-
If you want to use the system-installed version of Apache httpd
43-
(required on Windows, optional but faster on Linux/Mac), install the
44-
``mod_wsgi`` package instead. You will get an error if Apache and its
45-
development headers are not available. How to install them depends on
46-
what OS and package manager you use.
47-
48-
.. code-block:: text
49-
5039
$ pip install mod_wsgi
5140
5241

0 commit comments

Comments
 (0)