-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yml
43 lines (33 loc) · 1013 Bytes
/
app.yml
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
runtime: php82
handlers:
- url: /favicon\.ico
static_files: public/favicon.ico
upload: public/favicon.ico
- url: /node_modules
static_dir: node_modules
- url: /images
static_dir: public/images
- url: /zxcvbn/dist
static_dir: public/scripts/zxcvbn/dist
- url: /(.*).(html|js|json|css)
static_files: public/\1.\2
upload: public/(.*)\.(html|js|json|css)
- url: /(api|admin|auth)/.*
script: auto
- url: /index\.php
script: auto
- url: /
static_files: public/index.html
upload: public/index.html
http_headers:
# Link: '</scripts/app.js>; rel=preload; as=script, </elements/elements.html>; rel=preload; as=document, </styles/main.css>; rel=preload; as=style'
# Access-Control-Allow-Origin: "*"
- url: /.well-known/acme-challenge/?(.{5}).*
static_files: public/letsencrypt/\1.txt
upload: public/letsencrypt/(.+)
mime_type: text/plain
automatic_scaling:
min_idle_instances: automatic
max_idle_instances: 1
min_pending_latency: 5000ms
max_pending_latency: automatic