-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docs for WSGIErrorOverride directive.
- Loading branch information
1 parent
d49ed1b
commit ef3c4fd
Showing
3 changed files
with
21 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
================= | ||
WSGIErrorOverride | ||
================= | ||
|
||
:Description: Enable/disable use of Apache error documents. | ||
:Syntax: ``WSGIErrorOverride On|Off`` | ||
:Default: ``WSGIErrorOverride Off`` | ||
:Context: server config, virtual host, directory, .htaccess | ||
|
||
The `WSGIErrorOverride`` directive when set to `On`, and the WSGI application is | ||
running in daemon mode, will result in Apache error documents being used rather | ||
than those passed back by the WSGI application. This allows error documents to | ||
match any web site that the WSGI application may be integrated as a part of. | ||
This feature is akin to the `ProxyErrorOverride`` directive of Apache but for | ||
mod_wsgi only. | ||
|
||
Note that this directive has no effect when the WSGI application is running in | ||
embedded mode. |
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