0

Long story short- My subdomain is not working while domain is. Chrome just displays error- DNS_PROBE_FINISHED_NXDOMAIN. Here are images of config.

Google cloud config

Domain dns config

Deploy.yaml config

I tried different things- Verified subdomain, added subdomain CNAME, added A and AAAA records for subdomain. Either it throws error, like now. Or it points to same location as domain.

  • Which subdomain? How long after creating the subdomain or modifying the subdomain have you waited? Your TTL is 14,400 seconds. You usually must wait that long after making a change. – John Hanley Oct 18 '21 at 16:12
  • server.tunnilehed.ee is subdomain. I wait 6h to 24h. – user2965243 Oct 18 '21 at 16:20

1 Answers1

0

Your domain server.tunnilehed.ee returns NXDOMAIN. This error means that the DNS server does not have a resource record for that entry.

The solution is to create a resource record in your DNS server for server.tunnilehed.ee with a type of CNAME with a value of ghs.googlehosted.com.

Once you have corrected configured the resource record, you will need to wait for the TTL value specified in the SOA record before global DNS servers that have already cached the NXDOMAIN response to refresh their cache. This is typically either one hour or 24 hours. You can use an Internet service such as https://mxtoolbox.com/SuperTool.aspx to test your DNS server settings.

John Hanley
  • 4,754
  • 1
  • 11
  • 21
  • Then you have more than one problem. Implement my answer as this is required as the first step in the solution. The custom domain settings appear correct. That means the next problem is with your **deploy.yaml** file. change the entry for url:"\*//server.tunnlehed.ee/*" to url: "server.tunnilhed.ee/*" – John Hanley Oct 18 '21 at 17:08