-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
74 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
============= | ||
Version 4.7.0 | ||
============= | ||
|
||
Version 4.7.0 of mod_wsgi can be obtained from: | ||
|
||
https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.7.0 | ||
|
||
New Features | ||
------------ | ||
|
||
* Now releasing parallel ``mod_wsgi-standalone`` package to PyPi. This is | ||
the same as the ``mod_wsgi`` package, except that by installing the | ||
``mod_wsgi-standalone`` package, it will automatically trigger the | ||
``mod_wsgi-httpd`` package to install the Apache HTTPD server as part | ||
of your Python installation. When you run ``mod_wsgi-express`` it will | ||
use that Apache HTTPD server installation. | ||
|
||
The ``mod_wsgi-standalone`` package is required where you need to install | ||
``mod_wsgi-express`` using its own Apache HTTPD installation due to no | ||
system Apache HTTPD server package being available, and the installation | ||
needs to be done using a ``requirements.txt`` file for ``pip`` or other | ||
package install manager. Using ``mod_wsgi-standalone`` will ensure | ||
that the ``mod_wsgi-httpd`` package is installed first before attempting | ||
to build and install mod_wsgi. This guarantee is not provided by ``pip`` | ||
if you list ``mod_wsgi-httpd`` and ``mod_wsgi`` packages as two entries. | ||
|
||
The version numbering of the ``mod_wsgi-standalone`` package will follow | ||
the ``mod_wsgi`` versioning. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
set -eo pipefail | ||
|
||
rm -rf dist | ||
|
||
rm -f pyproject.toml | ||
|
||
python setup.py sdist | ||
|
||
ln -s pyproject.toml.in pyproject.toml | ||
|
||
python setup.py sdist | ||
|
||
rm -f pyproject.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools>=40.8.0", "wheel", "mod_wsgi-httpd==2.4.41.1"] | ||
build-backend = "setuptools.build_meta:__legacy__" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
def allow_access(environ, host): | ||
print environ, host | ||
print(environ, host) | ||
return True |