Added chapter about fabric based deployments

This commit is contained in:
Armin Ronacher 2010-07-06 16:07:13 +02:00
parent b7c0e564d4
commit 34fcd19306
5 changed files with 219 additions and 2 deletions

View file

@ -1,3 +1,5 @@
.. _mod_wsgi-deployment:
mod_wsgi (Apache)
=================
@ -134,6 +136,19 @@ If your application does not run, follow this guide to troubleshoot:
filename is used to locate the resources and for symlinks the wrong
filename is picked up.
Support for Automatic Reloading
-------------------------------
To help deployment tools you can activate support for automatic reloading.
Whenever something changes the `.wsgi` file, `mod_wsgi` will reload all
the daemon processes for us.
For that, just add the following directive to your `Directory` section:
.. sourcecode:: apache
WSGIScriptReloading On
Working with Virtual Environments
---------------------------------