If I start my django dev server using the command python manage.py runserver
I can connect to it using the command (from another terminal) curl http://localhost:8000/
but I can't connect with curl http://127.0.0.1:8000/
, the terminal responds "503 Service Unavailable".
Question: Are 127.0.0.1 and localhost not supposed to be the same?