Answer the question
In order to leave comments, you need to log in
How to setup app.yaml file for static site on google cloud appengine?
I'm trying to run a static site on the google cloud platform
. To do this, you need to match the url and static files that will be loaded in the app.yaml file
Standard file:
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /
static_files: www/index.html
upload: www/index.html
- url: /(.*)
static_files: www/\1
upload: www/(.*)
handlers:
- url: /{любой урл}/
static_files: www/{любой урл}/index.html
upload: www/{любой урл}/index.html
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question