forked from twilson63/zenbin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
34 lines (34 loc) · 828 Bytes
/
render.yaml
File metadata and controls
34 lines (34 loc) · 828 Bytes
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
services:
- type: web
runtime: node
name: zenbin
plan: starter
region: oregon
buildCommand: npm install && npm run build
startCommand: npm start
healthCheckPath: /health
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: 10000
- key: HOST
value: 0.0.0.0
- key: BASE_URL
value: https://zenbin.org
- key: LMDB_PATH
value: /var/data/zenbin.lmdb
- key: MAX_PAYLOAD_SIZE
value: 524288
- key: RATE_LIMIT_WINDOW_MS
value: 60000
- key: RATE_LIMIT_MAX_REQUESTS
value: 100
- key: ZENBIN_JWT_SECRET
value: change-me-in-production
- key: SUBDOMAIN_BASE_DOMAIN
value: zenbin.org
disk:
name: zenbin-data
mountPath: /var/data
sizeGB: 1