Chris McDonough
2009-10-11 913e6f283cfc1ba3ba116466bce5f970dbfa6e5d
Protip from Graham.

1 files modified
10 ■■■■■ changed files
docs/tutorials/modwsgi/index.rst 10 ●●●●● patch | view | raw | blame | history
docs/tutorials/modwsgi/index.rst
@@ -100,23 +100,19 @@
    create a file named ``/etc/apache2/other/modwsgi.conf`` on my own
    system while installing Apache, so this stuff went in there.
    .. code-block:: bash
    .. code-block:: apache
       :linenos:
       # Use only 1 Python sub-interpreter.  Multiple sub-interpreters
       # play badly with C extensions.
       WSGIApplicationGroup 0
       WSGIApplicationGroup %{GLOBAL}
       WSGIPassAuthorization On
       WSGIDaemonProcess bfg user=chrism group=staff processes=1 threads=6 \
       WSGIDaemonProcess bfg user=chrism group=staff processes=1 threads=4 \
         python-path=/Users/chrism/projects/modwsgi/env/lib/python2.6/site-packages
       WSGIScriptAlias /myapp /Users/chrism/projects/modwsgi/env/bfg.wsgi
       <Directory /Users/chrism/projects/modwsgi/env>
         WSGIProcessGroup bfg
         WSGIApplicationGroup %{GLOBAL}
         Order allow, deny
         Allow from all
       </Directory>