How do I get Flask to run on port 80?

1- Stop other applications that are using port 80.
2- run application with port 80 :

if __name__ == '__main__':
      app.run(host="0.0.0.0", port=80)

Leave a Comment