Google Cloud DNS giving 404 on top level domainTop level domain/domain suffix for private network?DNS trouble - think it might be caused by two NS recordsGoogle appengine Cloud integrationGoogle Cloud VM IIS hosted site DNS setupGoogle Cloud DNS vs. Google Domains DNSGoogle Cloud Resolve VM host name to Google Cloud DNS host namesGoogle cloud MX records not createdRrdatas not ordered correctly by Google Cloud DNSSetting up publicly-accessible DNS name in Google Cloud DNSGoogle Cloud A record issue with setting up CWP web panel
What is the color associated with lukewarm?
Purpose of cylindrical attachments on Power Transmission towers
Is all-caps blackletter no longer taboo?
Is it possible to install Firefox on Ubuntu with no desktop enviroment?
Why is it bad to use your whole foot in rock climbing
Lightning Web Component (LWC) not evaluating if:true from test
Is there a term for someone whose preferred policies are a mix of Left and Right?
What do you call the action of "describing events as they happen" like sports anchors do?
Parallelized for loop in Bash
Commencez à vous connecter -- I don't understand the phrasing of this
Can a 40amp breaker be used safely and without issue with a 40amp device on 6AWG wire?
Does WiFi affect the quality of images downloaded from the internet?
What game uses dice with compass point arrows, forbidden signs, explosions, arrows and targeting reticles?
Short story about psychologist analyzing demon
Why are backslashes included in this shell script?
Is it possible to have battery technology that can't be duplicated?
Why is Skinner so awkward in Hot Fuzz?
Is it a good security practice to force employees hide their employer to avoid being targeted?
What do I need to do, tax-wise, for a sudden windfall?
Must a CPU have a GPU if the motherboard provides a display port (when there isn't any separate video card)?
Can I get a photo of an Ancient Arrow?
Why did the Death Eaters wait to reopen the Chamber of Secrets?
Is there a term for when fiction refers to fiction
Why did Robert pick unworthy men for the White Cloaks?
Google Cloud DNS giving 404 on top level domain
Top level domain/domain suffix for private network?DNS trouble - think it might be caused by two NS recordsGoogle appengine Cloud integrationGoogle Cloud VM IIS hosted site DNS setupGoogle Cloud DNS vs. Google Domains DNSGoogle Cloud Resolve VM host name to Google Cloud DNS host namesGoogle cloud MX records not createdRrdatas not ordered correctly by Google Cloud DNSSetting up publicly-accessible DNS name in Google Cloud DNSGoogle Cloud A record issue with setting up CWP web panel
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I'm using Google Cloud DNS and Google App Engine Standard to configure an application.
Currently, I configured the DNS like this
mydomain.com. A 300
216.239.32.21
216.239.34.21
216.239.36.21
216.239.38.21
mydomain.com. AAAA 300
2001:4860:4802:32::15
2001:4860:4802:34::15
2001:4860:4802:36::15
2001:4860:4802:38::15
mydomain.com. MX 216000
1 aspmx.l.google.com.
5 alt1.aspmx.l.google.com.
5 alt2.aspmx.l.google.com.
10 alt3.aspmx.l.google.com.
10 alt4.aspmx.l.google.com.
mydomain.com. NS 21600
ns-cloud-c1.googledomains.com.
ns-cloud-c2.googledomains.com.
ns-cloud-c3.googledomains.com.
ns-cloud-c4.googledomains.com.
mydomain.com. SOA 21600
ns-cloud-c1.googledomains.com. cloud-dns-hostmaster.google.com. 1 21600 3600 259200 300
@.mydomain.com. A 300
216.239.32.21
216.239.34.21
216.239.36.21
216.239.38.21
api.mydomain.com. CNAME 300
ghs.googlehosted.com.
stage.mydomain.com. CNAME 300
ghs.googlehosted.com.
api.stage.mydomain.com. CNAME 300
ghs.googlehosted.com.
www.stage.mydomain.com. CNAME 300
ghs.googlehosted.com.
www.mydomain.com. CNAME 300
ghs.googlehosted.com.
So that I configured an stage environment using these domains and it is working so far.
- api.stage.mydomain.com
- stage.mydomain.com / www.stage.mydomain.com
I recently added the configuration for production with these domains
- api.mydomain.com
- mydomain.com / www.mydomain.com
And it is working so far except that mydomain.com is returning 404 http status from Google:
404. That’s an error.
The requested URL was not found on this server. That’s all we know.
Does anyone has encountered this problem before? How can it be solved so that mydomain.com starts working?
domain-name-system
|
show 2 more comments
I'm using Google Cloud DNS and Google App Engine Standard to configure an application.
Currently, I configured the DNS like this
mydomain.com. A 300
216.239.32.21
216.239.34.21
216.239.36.21
216.239.38.21
mydomain.com. AAAA 300
2001:4860:4802:32::15
2001:4860:4802:34::15
2001:4860:4802:36::15
2001:4860:4802:38::15
mydomain.com. MX 216000
1 aspmx.l.google.com.
5 alt1.aspmx.l.google.com.
5 alt2.aspmx.l.google.com.
10 alt3.aspmx.l.google.com.
10 alt4.aspmx.l.google.com.
mydomain.com. NS 21600
ns-cloud-c1.googledomains.com.
ns-cloud-c2.googledomains.com.
ns-cloud-c3.googledomains.com.
ns-cloud-c4.googledomains.com.
mydomain.com. SOA 21600
ns-cloud-c1.googledomains.com. cloud-dns-hostmaster.google.com. 1 21600 3600 259200 300
@.mydomain.com. A 300
216.239.32.21
216.239.34.21
216.239.36.21
216.239.38.21
api.mydomain.com. CNAME 300
ghs.googlehosted.com.
stage.mydomain.com. CNAME 300
ghs.googlehosted.com.
api.stage.mydomain.com. CNAME 300
ghs.googlehosted.com.
www.stage.mydomain.com. CNAME 300
ghs.googlehosted.com.
www.mydomain.com. CNAME 300
ghs.googlehosted.com.
So that I configured an stage environment using these domains and it is working so far.
- api.stage.mydomain.com
- stage.mydomain.com / www.stage.mydomain.com
I recently added the configuration for production with these domains
- api.mydomain.com
- mydomain.com / www.mydomain.com
And it is working so far except that mydomain.com is returning 404 http status from Google:
404. That’s an error.
The requested URL was not found on this server. That’s all we know.
Does anyone has encountered this problem before? How can it be solved so that mydomain.com starts working?
domain-name-system
What do you mean by "mydomain.com is returning 404 http status from Google"? Exactly what tool are you running to produce this response?
– Daniel K
May 29 at 22:33
The domain is revamos.com.ar. I'm using the browser to get the response
– cnexans
May 29 at 22:45
So is there a web server running on the four servers that you have A records for (216.239.32.21 216.239.34.21 216.239.36.21 216.239.38.21)? It appears not. This does not look like a DNS problem as such.
– Daniel K
May 29 at 22:51
I have inspected your DNS config for your domain and I'm seeing that it's currently pointing to Cloudflare DNS. Could you please confirm? I also see that revamos.com.ar is not working but www.revamos.com.ar does resolve to the webpage.
– Katie Sinatra
May 30 at 8:53
@KatieSinatra is right and the current DNS setup is quite different from your question. It seems that the servers you originally pointed the A record at were not expecting to serve your domain. This is probably an account issue rather than a DNS issue.
– Daniel K
May 30 at 10:06
|
show 2 more comments
I'm using Google Cloud DNS and Google App Engine Standard to configure an application.
Currently, I configured the DNS like this
mydomain.com. A 300
216.239.32.21
216.239.34.21
216.239.36.21
216.239.38.21
mydomain.com. AAAA 300
2001:4860:4802:32::15
2001:4860:4802:34::15
2001:4860:4802:36::15
2001:4860:4802:38::15
mydomain.com. MX 216000
1 aspmx.l.google.com.
5 alt1.aspmx.l.google.com.
5 alt2.aspmx.l.google.com.
10 alt3.aspmx.l.google.com.
10 alt4.aspmx.l.google.com.
mydomain.com. NS 21600
ns-cloud-c1.googledomains.com.
ns-cloud-c2.googledomains.com.
ns-cloud-c3.googledomains.com.
ns-cloud-c4.googledomains.com.
mydomain.com. SOA 21600
ns-cloud-c1.googledomains.com. cloud-dns-hostmaster.google.com. 1 21600 3600 259200 300
@.mydomain.com. A 300
216.239.32.21
216.239.34.21
216.239.36.21
216.239.38.21
api.mydomain.com. CNAME 300
ghs.googlehosted.com.
stage.mydomain.com. CNAME 300
ghs.googlehosted.com.
api.stage.mydomain.com. CNAME 300
ghs.googlehosted.com.
www.stage.mydomain.com. CNAME 300
ghs.googlehosted.com.
www.mydomain.com. CNAME 300
ghs.googlehosted.com.
So that I configured an stage environment using these domains and it is working so far.
- api.stage.mydomain.com
- stage.mydomain.com / www.stage.mydomain.com
I recently added the configuration for production with these domains
- api.mydomain.com
- mydomain.com / www.mydomain.com
And it is working so far except that mydomain.com is returning 404 http status from Google:
404. That’s an error.
The requested URL was not found on this server. That’s all we know.
Does anyone has encountered this problem before? How can it be solved so that mydomain.com starts working?
domain-name-system
I'm using Google Cloud DNS and Google App Engine Standard to configure an application.
Currently, I configured the DNS like this
mydomain.com. A 300
216.239.32.21
216.239.34.21
216.239.36.21
216.239.38.21
mydomain.com. AAAA 300
2001:4860:4802:32::15
2001:4860:4802:34::15
2001:4860:4802:36::15
2001:4860:4802:38::15
mydomain.com. MX 216000
1 aspmx.l.google.com.
5 alt1.aspmx.l.google.com.
5 alt2.aspmx.l.google.com.
10 alt3.aspmx.l.google.com.
10 alt4.aspmx.l.google.com.
mydomain.com. NS 21600
ns-cloud-c1.googledomains.com.
ns-cloud-c2.googledomains.com.
ns-cloud-c3.googledomains.com.
ns-cloud-c4.googledomains.com.
mydomain.com. SOA 21600
ns-cloud-c1.googledomains.com. cloud-dns-hostmaster.google.com. 1 21600 3600 259200 300
@.mydomain.com. A 300
216.239.32.21
216.239.34.21
216.239.36.21
216.239.38.21
api.mydomain.com. CNAME 300
ghs.googlehosted.com.
stage.mydomain.com. CNAME 300
ghs.googlehosted.com.
api.stage.mydomain.com. CNAME 300
ghs.googlehosted.com.
www.stage.mydomain.com. CNAME 300
ghs.googlehosted.com.
www.mydomain.com. CNAME 300
ghs.googlehosted.com.
So that I configured an stage environment using these domains and it is working so far.
- api.stage.mydomain.com
- stage.mydomain.com / www.stage.mydomain.com
I recently added the configuration for production with these domains
- api.mydomain.com
- mydomain.com / www.mydomain.com
And it is working so far except that mydomain.com is returning 404 http status from Google:
404. That’s an error.
The requested URL was not found on this server. That’s all we know.
Does anyone has encountered this problem before? How can it be solved so that mydomain.com starts working?
domain-name-system
domain-name-system
asked May 29 at 19:32
cnexanscnexans
1011
1011
What do you mean by "mydomain.com is returning 404 http status from Google"? Exactly what tool are you running to produce this response?
– Daniel K
May 29 at 22:33
The domain is revamos.com.ar. I'm using the browser to get the response
– cnexans
May 29 at 22:45
So is there a web server running on the four servers that you have A records for (216.239.32.21 216.239.34.21 216.239.36.21 216.239.38.21)? It appears not. This does not look like a DNS problem as such.
– Daniel K
May 29 at 22:51
I have inspected your DNS config for your domain and I'm seeing that it's currently pointing to Cloudflare DNS. Could you please confirm? I also see that revamos.com.ar is not working but www.revamos.com.ar does resolve to the webpage.
– Katie Sinatra
May 30 at 8:53
@KatieSinatra is right and the current DNS setup is quite different from your question. It seems that the servers you originally pointed the A record at were not expecting to serve your domain. This is probably an account issue rather than a DNS issue.
– Daniel K
May 30 at 10:06
|
show 2 more comments
What do you mean by "mydomain.com is returning 404 http status from Google"? Exactly what tool are you running to produce this response?
– Daniel K
May 29 at 22:33
The domain is revamos.com.ar. I'm using the browser to get the response
– cnexans
May 29 at 22:45
So is there a web server running on the four servers that you have A records for (216.239.32.21 216.239.34.21 216.239.36.21 216.239.38.21)? It appears not. This does not look like a DNS problem as such.
– Daniel K
May 29 at 22:51
I have inspected your DNS config for your domain and I'm seeing that it's currently pointing to Cloudflare DNS. Could you please confirm? I also see that revamos.com.ar is not working but www.revamos.com.ar does resolve to the webpage.
– Katie Sinatra
May 30 at 8:53
@KatieSinatra is right and the current DNS setup is quite different from your question. It seems that the servers you originally pointed the A record at were not expecting to serve your domain. This is probably an account issue rather than a DNS issue.
– Daniel K
May 30 at 10:06
What do you mean by "mydomain.com is returning 404 http status from Google"? Exactly what tool are you running to produce this response?
– Daniel K
May 29 at 22:33
What do you mean by "mydomain.com is returning 404 http status from Google"? Exactly what tool are you running to produce this response?
– Daniel K
May 29 at 22:33
The domain is revamos.com.ar. I'm using the browser to get the response
– cnexans
May 29 at 22:45
The domain is revamos.com.ar. I'm using the browser to get the response
– cnexans
May 29 at 22:45
So is there a web server running on the four servers that you have A records for (216.239.32.21 216.239.34.21 216.239.36.21 216.239.38.21)? It appears not. This does not look like a DNS problem as such.
– Daniel K
May 29 at 22:51
So is there a web server running on the four servers that you have A records for (216.239.32.21 216.239.34.21 216.239.36.21 216.239.38.21)? It appears not. This does not look like a DNS problem as such.
– Daniel K
May 29 at 22:51
I have inspected your DNS config for your domain and I'm seeing that it's currently pointing to Cloudflare DNS. Could you please confirm? I also see that revamos.com.ar is not working but www.revamos.com.ar does resolve to the webpage.
– Katie Sinatra
May 30 at 8:53
I have inspected your DNS config for your domain and I'm seeing that it's currently pointing to Cloudflare DNS. Could you please confirm? I also see that revamos.com.ar is not working but www.revamos.com.ar does resolve to the webpage.
– Katie Sinatra
May 30 at 8:53
@KatieSinatra is right and the current DNS setup is quite different from your question. It seems that the servers you originally pointed the A record at were not expecting to serve your domain. This is probably an account issue rather than a DNS issue.
– Daniel K
May 30 at 10:06
@KatieSinatra is right and the current DNS setup is quite different from your question. It seems that the servers you originally pointed the A record at were not expecting to serve your domain. This is probably an account issue rather than a DNS issue.
– Daniel K
May 30 at 10:06
|
show 2 more comments
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f969381%2fgoogle-cloud-dns-giving-404-on-top-level-domain%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f969381%2fgoogle-cloud-dns-giving-404-on-top-level-domain%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What do you mean by "mydomain.com is returning 404 http status from Google"? Exactly what tool are you running to produce this response?
– Daniel K
May 29 at 22:33
The domain is revamos.com.ar. I'm using the browser to get the response
– cnexans
May 29 at 22:45
So is there a web server running on the four servers that you have A records for (216.239.32.21 216.239.34.21 216.239.36.21 216.239.38.21)? It appears not. This does not look like a DNS problem as such.
– Daniel K
May 29 at 22:51
I have inspected your DNS config for your domain and I'm seeing that it's currently pointing to Cloudflare DNS. Could you please confirm? I also see that revamos.com.ar is not working but www.revamos.com.ar does resolve to the webpage.
– Katie Sinatra
May 30 at 8:53
@KatieSinatra is right and the current DNS setup is quite different from your question. It seems that the servers you originally pointed the A record at were not expecting to serve your domain. This is probably an account issue rather than a DNS issue.
– Daniel K
May 30 at 10:06