blob: 6c32a15e93bff18a49303a5633239be5fe208bac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
LoadModule wsgi_module modules/mod_wsgi.so
# Some apps, notably anything that uses hg, need these off
WSGIRestrictStdin Off
WSGIRestrictStdout Off
# Put the socket somewhere writable
WSGISocketPrefix run/wsgi
# Do not Optimize without stripping docstrings
WSGIPythonOptimize 0
# Set WSGIApplicationGroup to global
WSGIApplicationGroup %{GLOBAL}
|