bundled/flask/docs/deploying/index.rst @ bdfacbcf700e default tip

Friendlier patch urls & mimetype

Replace /changeset/<revset>/patch/ by /changeset/<revset>.patch and set
the mimetype to text/x-diff.

This helps the browser opening the right application thanks to the
mimetype, and the application to better guess the file type thanks
to the '.patch' extension
author Christophe de Vienne <christophe@cdevienne.info>
date Fri, 19 Aug 2016 18:58:14 +0200
parents f33efe14bff1
children (none)
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