Issue
I have a flask web application build as an internal tool in our org.
now it is decided to move it to production ( on AWS ).
i can't find anything useful other than it says that Flask is not recommended for production.
Is there still some way to build setup of the flask app as the main web server?
Solution
Flask is well equipped to handle requests but yes it has it's own development environment which isn't recommended to use in production, you have to use proxy servers like uwsgi, gunicorn that replaces your development server.
Now you can also not handle request from uwsgi servers, you want a proper heavy duty reverse proxy server like NGINX or Apache2 to do that work for you.This might resemble the logical flow.
You can refer to below articles they explain such details clearly and with procedure.
Answered By - cupid22
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.