-
Notifications
You must be signed in to change notification settings - Fork 39
/
app.yaml
68 lines (52 loc) · 1.59 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# https://cloud.google.com/appengine/docs/standard/reference/app-yaml?tab=python
# application: bridgy-federated
runtime: python312
# default_expiration: 1h
# https://cloud.google.com/appengine/docs/standard/python3/runtime#entrypoint_best_practices
# https://docs.gunicorn.org/en/latest/settings.html#timeout
entrypoint: gunicorn --workers 1 --threads 30 --timeout 60 -b :$PORT app:app
# background: https://github.com/snarfed/bridgy/issues/578
# https://github.com/snarfed/bridgy/issues/1051
automatic_scaling:
max_idle_instances: 1
target_cpu_utilization: .9
min_pending_latency: 500ms
max_concurrent_requests: 30
inbound_services:
- warmup
# for memorystore memcache
vpc_access_connector:
name: projects/bridgy-federated/locations/us-central1/connectors/bridgy-fed
env_variables:
PDS_HOST: fed.brid.gy
PLC_HOST: plc.directory
APPVIEW_HOST: api.bsky.app
BGS_HOST: bsky.network
MOD_SERVICE_HOST: mod.bsky.app
MOD_SERVICE_DID: did:plc:ar7c4by46qjdydhdevvrndac
# ...or test against labeler.dholms.xyz / did:plc:vzxheqfwpbi3lxbgdh22js66
handlers:
# static
- url: /static
static_dir: static
secure: always
- url: /oauth_dropins_static
static_dir: oauth_dropins_static
- url: /fonts
static_dir: oauth_dropins_fonts
- url: /favicon.ico
static_files: static/favicon.ico
upload: static/favicon.ico
secure: always
- url: /robots.txt
static_files: static/robots.txt
upload: static/robots.txt
secure: always
- url: /.well-known/security.txt
static_files: static/security.txt
upload: static/security.txt
secure: always
# dynamic
- url: .*
script: auto
secure: always