Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/app/static/doc/flask-docs/_sources/deploying/index.txt
blob: d258df89aafdeb0478f477b57a743c188665216e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.. _deployment:

Deployment Options
==================

Depending on what you have available there are multiple ways to run
Flask applications.  You can use the builtin server during development,
but you should use a full deployment option for production applications.
(Do not use the builtin development server in production.)  Several
options are available and documented here.

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
:class:`Flask` application object is the actual WSGI application.

.. toctree::
   :maxdepth: 2

   mod_wsgi
   cgi
   fastcgi
   uwsgi
   others