38 lines
839 B
YAML
38 lines
839 B
YAML
---
|
|
argument_specs:
|
|
main:
|
|
options:
|
|
db_url:
|
|
type: str
|
|
required: true
|
|
description: "postgresql://vaultwarden:password@postgresql:5432/vaultwarden"
|
|
domain:
|
|
type: str
|
|
required: true
|
|
description: "https://vault.example.com"
|
|
signups_allowed:
|
|
type: bool
|
|
default: false
|
|
log_level:
|
|
type: str
|
|
default: warn
|
|
smtp_host:
|
|
type: str
|
|
description: "mail.example.com"
|
|
default: ""
|
|
smtp_from:
|
|
type: str
|
|
description: "vault@example.com"
|
|
default: ""
|
|
smtp_port:
|
|
type: int
|
|
default: 587
|
|
smtp_security:
|
|
type: str
|
|
default: "starttls"
|
|
smtp_username:
|
|
type: str
|
|
default: ""
|
|
smtp_password:
|
|
type: str
|
|
default: ""
|