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.