[add] example conf
This commit is contained in:
parent
1ec6fd96b6
commit
75c9f8456c
1 changed files with 69 additions and 0 deletions
69
misc/conf.example.json
Normal file
69
misc/conf.example.json
Normal file
|
@ -0,0 +1,69 @@
|
|||
{
|
||||
"general": {
|
||||
"language": null,
|
||||
"verbosity": "info",
|
||||
"verification_secret": null
|
||||
},
|
||||
"server": {
|
||||
"port": 4916,
|
||||
"path_base": ""
|
||||
},
|
||||
"database": {
|
||||
"kind": "sqlite",
|
||||
"data": {
|
||||
"path": "data.sqlite"
|
||||
}
|
||||
},
|
||||
"email_sending": {
|
||||
"kind": "console",
|
||||
"data": {
|
||||
}
|
||||
},
|
||||
"session_management": {
|
||||
"in_memory": false,
|
||||
"drop_all_at_start": false,
|
||||
"lifetime": 7200
|
||||
},
|
||||
"settings": {
|
||||
"organisation": {
|
||||
"name": "Example Orginsation",
|
||||
"domain": "example.org"
|
||||
},
|
||||
"misc": {
|
||||
"prefix_for_veiled_email_addresses": "member-",
|
||||
"facultative_membership_number": true,
|
||||
"auto_register": true
|
||||
},
|
||||
"summon_email": {
|
||||
"remark": null
|
||||
},
|
||||
"password_policy": {
|
||||
"minimum_length": 4,
|
||||
"maximum_length": 12,
|
||||
"must_contain_letter": true,
|
||||
"must_contain_number": false,
|
||||
"must_contain_special_character": false
|
||||
},
|
||||
"password_change": {
|
||||
"cooldown_time": 300
|
||||
},
|
||||
"name_index": {
|
||||
"veil": false,
|
||||
"salt": null
|
||||
},
|
||||
"connections": {
|
||||
"frontend_url_base": null,
|
||||
"login_url": null
|
||||
}
|
||||
},
|
||||
"admins": [
|
||||
{
|
||||
"name": "admin",
|
||||
"password_image": "$2b$12$xOa6iWPOMjiwJ3oIOZWDGu/w2Ca/eKLHWE7aDItkNsP/79nJk065i",
|
||||
"email_address": "espe-admin@example.org"
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"authelia": "/tmp/authelia-users.yml"
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue