Reputation: 87
I connected my domain (purchased from NameCheap.com) to a google app engine app, and it started working after few minutes. But sometimes it shows 404, and sometimes just works. It's been like this for 2 days. And it also seem to be showing 404 from different places. My friend in Turkey sees 404 all the time. I verified my domain successfully and I added 4 ip addresses and 4 ipv6 addresses with @ subdomain. and I also set www subdomain ghs.googlehosted.com host. How do I make it work consistently?
Upvotes: 2
Views: 751
Reputation: 4104
Try to deploy your code again. It might have been that the code was not successfully deployed to all instances.
Source: https://code.google.com/p/googleappengine/issues/detail?id=9695
Upvotes: 1
Reputation: 693
I've seen this if your authentication domain is set on the application, or if your app.yaml (assuming python) has secure: admin or login: required.
See https://cloud.google.com/appengine/articles/auth and https://cloud.google.com/appengine/docs/python/config/appconfig#Python_app_yaml_Secure_URLs
Upvotes: 1