Browse Source

Merge pull request #550 from AkaiKitsune/master

Added Windows documentation for mod_wsgi usage
pull/548/merge
Armin Ronacher 12 years ago
parent
commit
aecb760c6a
  1. 14
      docs/deploying/mod_wsgi.rst

14
docs/deploying/mod_wsgi.rst

@ -91,6 +91,20 @@ execute the application under a different user for security reasons:
</Directory> </Directory>
</VirtualHost> </VirtualHost>
Note: WSGIDaemonProcess isn't implemented in Windows and Apache will
refuse to run with the above configuration. On a Windows system, eliminate those lines:
.. sourcecode:: apache
<VirtualHost *>
ServerName example.com
WSGIScriptAlias / C:\yourdir\yourapp.wsgi
<Directory C:\yourdir>
Order deny,allow
Allow from all
</Directory>
</VirtualHost>
For more information consult the `mod_wsgi wiki`_. For more information consult the `mod_wsgi wiki`_.
.. _mod_wsgi: http://code.google.com/p/modwsgi/ .. _mod_wsgi: http://code.google.com/p/modwsgi/

Loading…
Cancel
Save