Break up deployment docs into separate documents.

This commit is contained in:
Armin Ronacher 2010-04-19 11:23:44 +02:00
parent a50a87c4ca
commit c64a4e0bef
7 changed files with 318 additions and 308 deletions

19
docs/deploying/index.rst Normal file
View file

@ -0,0 +1,19 @@
Deployment Options
==================
Depending on what you have available there are multiple ways to run Flask
applications. A very common method is to use the builtin server during
development and maybe behind a proxy for simple applications, but there
are more options available.
If you have a different WSGI server look up the server documentation about
how to use a WSGI app with it. Just remember that your application object
is the actual WSGI application.
.. toctree::
:maxdepth: 2
mod_wsgi
cgi
fastcgi
others