47 lines
833 B
TOML
47 lines
833 B
TOML
[bootstrap]
|
|
admin_email = 'admin@localhost'
|
|
bootstrap_dir = '/app/bootstrap'
|
|
password_plain = '1234test'
|
|
|
|
[server]
|
|
scheme = 'http'
|
|
pub_url = 'localhost:8080'
|
|
trusted_proxies = [
|
|
'192.168.0.0/16',
|
|
'172.0.0.0/8',
|
|
'10.0.0.0/8',
|
|
]
|
|
|
|
[logging]
|
|
level = 'info'
|
|
|
|
[email]
|
|
smtp_port = 1025
|
|
smtp_url = 'mailcrab'
|
|
danger_insecure = true
|
|
|
|
[encryption]
|
|
keys = ['bVCyTsGaggVy5yqQ/UzluN29DZW41M3hTSkx6Y3NtZmRuQkR2TnJxUTYzcjQ=']
|
|
key_active = 'bVCyTsGaggVy5yqQ'
|
|
|
|
[cluster]
|
|
node_id = 1
|
|
nodes = ["1 localhost:8100 localhost:8200"]
|
|
secret_raft = "SuperSecureSecret1337"
|
|
secret_api = "SuperSecureSecret1337"
|
|
|
|
[mfa]
|
|
admin_force_mfa = false
|
|
|
|
[webauthn]
|
|
rp_id = 'localhost'
|
|
rp_origin = 'http://localhost:8080'
|
|
|
|
[auth_headers]
|
|
enable = true
|
|
enable_pref_username = true
|
|
|
|
[user_values.preferred_username]
|
|
preferred_username = 'required'
|
|
immutable = true
|