Skip to content

Commit 92a7313

Browse files
Update Apache version for mod_wsgi-standalone to 2.4.54.
1 parent 2e4e118 commit 92a7313

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

README-standalone.rst

+15-6
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,30 @@ The primary package for mod_wsgi is available on the Python package index
1010
version of Apache pre-installed on your target system, and if you don't,
1111
installation of the package will fail.
1212

13-
If you are on a UNIX like system (Linux, macOS) and need a version of
14-
Apache to be installed for you, you can use the ``mod_wsgi-standalone``
13+
If you are on a UNIX like system (Linux) and need a version of Apache
14+
to be installed for you, you can use the ``mod_wsgi-standalone``
1515
package on PyPi instead. When installing the ``mod_wsgi-standalone``
1616
package it will first trigger the installation of the ``mod_wsgi-httpd``
1717
package, which will result in a version of Apache being installed as
1818
part of your Python installation. Next the ``mod_wsgi`` package will be
1919
installed, with it using the version of Apache installed by the
2020
``mod_wsgi-httpd`` package rather than any system package for Apache.
2121

22-
Note that this method of installation is only suitable for where you want
23-
to use ``mod_wsgi-express``. It cannot be used to build mod_wsgi for use
24-
with your system Apache installation. This installation method will also
25-
not work on Windows.
22+
This method of installation is only suitable for where you want to use
23+
``mod_wsgi-express``. It cannot be used to build mod_wsgi for use with
24+
your system Apache installation. This installation method will not
25+
work on Windows, and also currently fails on macOS because the Apache
26+
Runtime (APR) library, has not been updated to latest macOS versions.
2627

2728
When installing mod_wsgi using this method, except that you will install
2829
the ``mod_wsgi-standalone`` package instead of the ``mod_wsgi`` package,
2930
you should follow installation and usage instructions outlined on the
3031
PyPi page for the ``mod_wsgi`` package.
32+
33+
**NOTE: Although this package may allow you to install a standalone Apache
34+
version, it is only really recommended that you use this package if you
35+
have absolutely no other choice for getting the Apache httpd server
36+
installed. Always use the Apache httpd server supplied with the operating
37+
system if you can. Building this package if you do choose to do so, will
38+
take some time. So if you you think the install is hanging, it is probably
39+
still busy compiling everything.**

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -466,5 +466,5 @@ def _version():
466466
entry_points = { 'console_scripts':
467467
['mod_wsgi-express = mod_wsgi.server:main'],},
468468
zip_safe = False,
469-
install_requires = standalone and ['mod_wsgi-httpd==2.4.48.1'] or [],
469+
install_requires = standalone and ['mod_wsgi-httpd==2.4.54.1'] or [],
470470
)

0 commit comments

Comments
 (0)