Shorten paragraph about builtin server
This commit is contained in:
parent
3d3b809347
commit
750fa594d8
1 changed files with 4 additions and 7 deletions
|
|
@ -3,13 +3,10 @@
|
||||||
Deployment Options
|
Deployment Options
|
||||||
==================
|
==================
|
||||||
|
|
||||||
Flask's builtin server is lightweight and easy to use, but it has multiple
|
While lightweight and easy to use, **Flask's built-in server is not suitable
|
||||||
problems which you don't want to face in production. With default settings, it
|
for production** as it doesn't scale well and by default serves only one
|
||||||
can handle only one request at a time, and even if you manage to circumvent
|
request at a time. Some of the options available for properly running Flask in
|
||||||
this problem, it has too many scaling problems that would make it unsuitable
|
production are documented here.
|
||||||
for production. **Do not use the builtin development server in production**.
|
|
||||||
Some of the options available for properly running Flask in production are
|
|
||||||
documented here.
|
|
||||||
|
|
||||||
If you want to deploy your Flask application to a WSGI server not listed here,
|
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
|
look up the server documentation about how to use a WSGI app with it. Just
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue