-
Notifications
You must be signed in to change notification settings - Fork 21
/
app.yaml
31 lines (27 loc) · 1008 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
runtime: nodejs20
default_expiration: 2m
handlers:
- url: /(.*\.(css|eot|gz|ico|jpg|jpeg|js|json|map|png|svg|otf|ttf|woff|woff2))
static_files: build/\1
upload: build/.*\.(css|eot|gz|ico|jpg|jpeg|js|json|map|png|svg|otf|ttf|woff|woff2)
secure: always
http_headers:
X-Content-Type-Options: "nosniff"
- url: /(google.*\.html)
mime_type: text/html
static_files: build/\1
upload: build/(google.*\.html)
secure: always
http_headers:
X-Content-Type-Options: "nosniff"
- url: /.*
static_files: build/index.html
upload: build/index.html
expiration: 0s
secure: always
http_headers:
Content-Security-Policy: "base-uri 'self'; object-src 'none'; script-src 'self' 'unsafe-eval' https://fast.appcues.com https://cdnjs.cloudflare.com https://cdn.jsdelivr.net; style-src * 'unsafe-inline'"
X-Frame-Options: "SAMEORIGIN"
Strict-Transport-Security: "max-age=31536000; includeSubdomains; preload"
X-Content-Type-Options: "nosniff"
X-XSS-Protection: "1; mode=block"