forked from golang/tour
-
Notifications
You must be signed in to change notification settings - Fork 45
/
app.yaml
33 lines (29 loc) · 833 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
service: default
runtime: go112
automatic_scaling:
max_instances: 1
env_variables:
GOLANGORG_CHECK_COUNTRY: true
TOUR_ANALYTICS: |
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-11222381-5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag("js", new Date());
gtag("config", "UA-11222381-5");
gtag("config", "UA-49880327-6");
</script>
default_expiration: "7d"
# 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