ansible-base/roles/hedgedoc/defaults/main.json

39 lines
730 B
JSON
Raw Normal View History

2023-12-10 20:44:52 +01:00
{
2025-10-08 11:20:09 +02:00
"cfg_hedgedoc_defaults": {
"user_name": "hedgedoc",
"directory": "/opt/hedgedoc",
"version": "1.9.9",
"database": {
"kind": "sqlite",
"data": {
2025-10-08 12:26:20 +02:00
"sqlite": {
"path": "/var/hedgedoc/data.sqlite"
},
"postgresql": {
"host": "localhost",
"port": 5432,
"username": "hedgedoc_user",
"password": "hedgedoc",
"schema": "hedgedoc"
}
2025-10-08 11:20:09 +02:00
}
},
"authentication": {
2025-10-08 12:26:20 +02:00
"kind": "internal",
"data": {
"internal": {
},
"authelia": {
"client_id": "hedgedoc",
"client_secret": "hedgedoc",
"provider_name": "Authelia"
}
}
2025-10-08 11:20:09 +02:00
},
"log_level": "error",
"guest_allow_create": false,
"guest_allow_change": false,
"free_names_mode": "authed"
}
2023-12-10 20:44:52 +01:00
}