yaml - Google App Engine - set index/home page -
from understand, app.yaml file in google app engine project, can serve file 'home' page. when navigate domain, however, gives me 404. app.yaml in war directory. app.yaml looks like:
application: therealtest version: 10 runtime: python api_version: 1 handlers: - url: / static_files: site/index-static.html upload: site/index-static\.html
what expecting display page index-static.html when go domain of site, not. not correct way this? thank you.
is site directory inside war directory? should be, given said app.yaml file is.
fwiw, putting web app in war directory implies me you're thinking in java terms, app.yaml snippet tells you're using python. in java, war stands web archive, zip file required directories , files.
Comments
Post a Comment