-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathdeployment.yaml
More file actions
54 lines (46 loc) · 1.3 KB
/
deployment.yaml
File metadata and controls
54 lines (46 loc) · 1.3 KB
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
server:
hostname: "0.0.0.0"
public_url: "https://localhost:8090"
port: 8090
tls:
min_version: "1.3"
cert_file: "repository/resources/security/server.cert"
key_file: "repository/resources/security/server.key"
database:
config:
type: "sqlite"
path: "repository/database/config.db"
options: "_journal_mode=WAL&_busy_timeout=5000&_pragma=foreign_keys(1)"
max_open_conns: 500
max_idle_conns: 100
conn_max_lifetime: 3600
runtime:
type: "sqlite"
path: "repository/database/runtimedb.db"
options: "_journal_mode=WAL&_busy_timeout=5000&_pragma=foreign_keys(1)"
max_open_conns: 500
max_idle_conns: 100
conn_max_lifetime: 3600
user:
type: "sqlite"
path: "repository/database/userdb.db"
options: "_journal_mode=WAL&_busy_timeout=5000&_pragma=foreign_keys(1)"
max_open_conns: 500
max_idle_conns: 100
conn_max_lifetime: 3600
crypto:
encryption:
key: "file://repository/resources/security/crypto.key"
keys:
- id: "default-key"
cert_file: "repository/resources/security/signing.cert"
key_file: "repository/resources/security/signing.key"
jwt:
preferred_key_id: "default-key"
cors:
allowed_origins:
- "https://localhost:3000"
- "https://localhost:5173"
passkey:
allowed_origins:
- "https://localhost:8090"