Page not found (404)

Request Method: GET
Request URL: http://3.34.2.100/

Using the URLconf defined in config.urls, Django tried these URL patterns, in this order:

  1. archive
  2. archive/items
  3. archive/items/<str:id>
  4. archive/country-data/<str:country>
  5. archive/upload
  6. archive/upload/<str:id>
  7. archive/bulk
  8. archive/delete/<str:id>
  9. archive/delete-photo/<str:id>
  10. admin/
  11. member/
  12. ^media/(?P<path>.*)$

The empty path didn’t match any of these.

You’re seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.