0

I have followed this instructions to deploy a static website on App Engine https://cloud.google.com/appengine/docs/standard/php/getting-started/hosting-a-static-website

But when I visit the website, I only get

This site can’t be reached. XXXXX server IP address could not be found. DNS_PROBE_FINISHED_NXDOMAIN

My app.yaml

runtime: php55
api_version: 1
threadsafe: true

handlers:
- url: /
  static_files: www/index.html
  upload: www/index.html

- url: /(.*)
  static_files: www/\1
  upload: www/(.*)

I did not do anything besides that in the tutorial page.

1 Answers1

0

I couldn't reproduce the issue following the documentation you linked.


The error DNS_PROBE_FINISHED_NXDOMAIN stands for non-existent domain. Therefore, if you are using custom domain in GAE, I would recommend inspecting your domain first:

  • Check if you can see it in your domain registrar account.
  • Make sure your DNS settings are correct.
  • See if it is properly mapped to Google.

Alternatively, try accessing it via different browser or/and on another network to see if it still gives you the same error.


Here are some similar threads that I could find: link1, link2, link3.


If none of the above helps, I would suggest contacting the GCP technical support for a more detailed inspection.

Deniss T.
  • 2,526
  • 9
  • 21