diff options
Diffstat (limited to 'app.yaml')
| -rw-r--r-- | app.yaml | 37 |
1 files changed, 18 insertions, 19 deletions
@@ -1,5 +1,5 @@ service: default -runtime: go121 +runtime: go125 env_variables: TOUR_ANALYTICS: | @@ -14,22 +14,21 @@ env_variables: default_expiration: "7d" handlers: + # Keep these static file handlers in sync with local.go. + # They're here for improved latency across global regions. + - url: /favicon.ico + static_files: static/img/favicon.ico + upload: static/img/favicon.ico + secure: always + - url: /content/img + static_dir: content/img + secure: always + - url: /static + static_dir: static + secure: always -# Keep these static file handlers in sync with local.go. -# They're here for improved latency across global regions. -- url: /favicon.ico - static_files: static/img/favicon.ico - upload: static/img/favicon.ico - secure: always -- url: /content/img - static_dir: content/img - secure: always -- url: /static - static_dir: static - secure: always - -# This is here to redirect all HTTP traffic to an HTTPS URL -# with the same path. -- url: /.* - script: auto - secure: always + # This is here to redirect all HTTP traffic to an HTTPS URL + # with the same path. + - url: /.* + script: auto + secure: always |
