Skip to content

Commit

Permalink
Added directions for mod_wsgi vhost configuration under Apache on Win…
Browse files Browse the repository at this point in the history
…dows
  • Loading branch information
AkaiKitsune committed Jul 16, 2012
1 parent ea2a062 commit b9df128
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/deploying/mod_wsgi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,20 @@ execute the application under a different user for security reasons:
</Directory>
</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`_.

.. _mod_wsgi: http://code.google.com/p/modwsgi/
Expand Down

0 comments on commit b9df128

Please sign in to comment.