Reputation: 119
I have many flask application running as independent module. (No web pages is serving here, no CSS, or any script file). It's purely Rest based Web services which do some processing and return the response.
I would like to take these flask application to the production grade. Thus, I need to change the internal flask server with some other production grade server. Over the Internet, I found that we should go with the some WSGI server (GUnicorn with NGINX as proxy server). As we don't have any static web pages to serve here, I'm confused whether I should configure NGINX or Gunicorn alone with Async worker is enough to handle the load on production.
Note: We have huge load over the production as it will processing over 100k images.
Upvotes: 2
Views: 937
Reputation: 119
I also found that unicorn is better alternative to Gunicorn. Reference
Upvotes: 0