Amazon web services – Unable to connect to a port in an EC2 instance
I have an EC2 instance that is running a Flask application, this is how my code looks: from flask import Flask, request app = Flask(__name__) @app.route('/', methods = ["GET"]) def HOME(): return {"mensaje": "Proyecto OLC2!"} if __name__ == '__main__': app.run(debug…