forked from orbit-oss/flask
Added chapter about fabric based deployments
This commit is contained in:
parent
b7c0e564d4
commit
34fcd19306
5 changed files with 219 additions and 2 deletions
|
|
@ -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
|
||||
---------------------------------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue