Published Question
Hello!
So I have gone too long without having the debugger enabled when I am developing on my Ubuntu web server running Python with Flask. I got the debugger to run at ' 127.0.0.1:5000 ' after running the command ' fl...
Accepted Answer:
127.0.0.1 is the local loopback interface. It will only be accessible from the server itself. If you need to access it remotely, start the app using:
flask run --host=0.0.0.0
This tells it to bind to all interfaces...
1
•
•
By
douglasrcjames
Python
Apache
Ubuntu