-
Notifications
You must be signed in to change notification settings - Fork 15
/
app.yaml
45 lines (36 loc) · 904 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
36
37
38
39
40
41
42
43
44
45
runtime: nodejs18
instance_class: F4
automatic_scaling:
max_concurrent_requests: 100
handlers:
- url: /static
static_dir: public/static
secure: always
- url: /$
static_files: public/index.html
upload: public/index.html
secure: always
- url: /new$
static_files: public/index.html
upload: public/index.html
secure: always
- url: /(legal|legal/cookies|privacy)$
static_files: public/\1/index.html
upload: public/(legal|legal/cookies|privacy)/index.html
secure: always
- url: /(robots|ads)\.txt$
static_files: public/\1.txt
upload: public/(robots|ads)\.txt
secure: always
- url: /(favicon.ico(.png)?)$
static_files: public/\1
upload: public/(favicon.ico(.png)?)
secure: always
- url: /manifest.json$
static_files: public/manifest.json
upload: public/manifest.json
secure: always
- url: /.*
secure: always
redirect_http_response_code: 301
script: auto