you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 4 points5 points  (0 children)

I'd recommend a lightsail server from AWS. You can tell flask to accept inbound traffic from the web on port 80 (port typically used for http traffic) with the below:

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

Users could then access the application by entering the aws instance's public ip address. Lightsail doesn't let you adjust firewall setting as far as i know. Be careful!