mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-17 22:26:58 +00:00
- Invalidate plaintext refresh tokens (migration 019) - Add `--sign` flag to `orama build` for rootwallet manifest signing - Add `--ca-fingerprint` TOFU verification for production joins/invites - Save cluster secrets from join (RQLite auth, Olric key, IPFS peers) - Add RQLite auth config fields
21 lines
435 B
YAML
21 lines
435 B
YAML
server:
|
|
bindAddr: "{{.ServerBindAddr}}"
|
|
bindPort: {{.HTTPPort}}
|
|
|
|
memberlist:
|
|
environment: {{.MemberlistEnvironment}}
|
|
bindAddr: "{{.MemberlistBindAddr}}"
|
|
bindPort: {{.MemberlistPort}}
|
|
{{- if .MemberlistAdvertiseAddr}}
|
|
advertiseAddr: "{{.MemberlistAdvertiseAddr}}"
|
|
{{- end}}
|
|
{{- if .Peers}}
|
|
peers:
|
|
{{- range .Peers}}
|
|
- "{{.}}"
|
|
{{- end}}
|
|
{{- end}}
|
|
{{- if .EncryptionKey}}
|
|
encryptionKey: "{{.EncryptionKey}}"
|
|
{{- end}}
|