~bigbes/lethe

ref: 3c45b48bd5d0d99f76d2063504adaa7b312b85bc lethe/config.example.yaml -rw-r--r-- 519 bytes
3c45b48b — Eugene Blikh feat(http): chi server with middleware stack + RFC 7807 problem renderer a month ago
                                                                                
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
server:
  bind: "127.0.0.1:8080"
  shutdown_grace: 10s

database:
  path: "./lethe.db"
  busy_timeout: 5s

auth:
  allowed_users: ["bigbes"]
  admins: []
  forward_auth:
    enabled: true
    user_header: "Remote-User"
  oidc:
    enabled: false
    issuer: "https://auth.example.com"
    audience: "lethe"
    username_claim: "preferred_username"

logging:
  level: "info"
  format: "tint"   # tint | json

ingest:
  max_body_bytes: 16777216        # 16 MiB
  max_turn_content_bytes: 4194304 # 4 MiB
  chunk_size: 500