展開の選択肢(Deployment Options) Deployment Options

軽量で簡単に使用できますが、規模の拡大・縮小をうまくはできないため、Flaskの組み込みサーバは本番環境のために適したものではありません。本番環境でうまくFlaskを実行するために使用可能な選択肢のいくつかが、ここで説明されています。 While lightweight and easy to use, **Flask's built-in server is not suitable for production** as it doesn't scale well. Some of the options available for properly running Flask in production are documented here.

もしもここのリストにはないWSGIサーバへFlaskアプリケーションをデプロイしたい場合、WSGI appの使い方に関するそのサーバのドキュメントを調べてください。Flaskアプリケーションのオブジェクトは実際にWSGIアプリケーションであることを、まずは思い出してください。 If you want to deploy your Flask application to a WSGI server not listed here, 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.

ホストされる場合の選択肢(Hosted Options) Hosted options