This is an interesting one. I had a Django web app deployed to a different hosting service. The web app used a custom domain www.example.com. I removed any DNS pointing to the Django app and linked this domain to my Fly App.
Everything works perfectly. The only weired thing is that without any traffic on the website I am getting GET/POST requests showing on the Metrics tab. All of these request are failing (404). The requests apparently point to views that do not exist on the current app but did exist on the old Django app.
How can i be getting requests for the old app in the new one? The old django app is not exposed to the web in any way.
Any thoughts?