Difference between Flask and IIS(Internet Information Service) or Apache | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Difference between Flask and IIS(Internet Information Service) or Apache

When I run my service through flask, I can access that service from any other system. When I host my service on IIS or Apache even then I can access it from other system. May I know, can flask alone can be used to make my service public or I need to run my flask on IIS or Apache. I'm new to flask and IIS please help me with this.

4th Sep 2019, 3:50 PM
Initiator
1 Answer
+ 1
Flask has a built-in WSGI server called Werkzeug Technically you can use flask and access it's web app directly. Production-wise it's better to use a Reverse proxy (like Nginx) , and a production WSGI server (like Gunicorn)
16th May 2020, 7:50 AM
NourEddine Yassine