forked from golang/tour
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.yaml
35 lines (31 loc) · 881 Bytes
/
app.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#service: tour
service: default
runtime: go115
env_variables:
GOLANGORG_CHECK_COUNTRY: true
TOUR_ANALYTICS: |
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-88GMS6XSSV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-88GMS6XSSV');
</script>
default_expiration: "10s"
# Keep these static file handlers in sync with local.go.
# They're here for improved latency across global regions.
handlers:
- 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
- url: /.*
secure: always
script: auto