Home > other >  Unable to access Django server running in EC2 instance
Unable to access Django server running in EC2 instance

Time:08-11

I'm trying to run a Django(or really any server to begin) in an ec2 instance like in this tutorial: enter image description here

I try to access the webpage with :8000 with no luck

I would like to know where there are sources for error in this process and if there's anything I can do to test the server. If I missed anything let me know.

CodePudding user response:

Your development server is listening on port 8000, create a tcp rule allowing inbound connections on port 8000.

  • Related