Add galene config

This commit is contained in:
Edgar P. Burkhart 2023-02-12 10:46:28 +01:00
parent ac271564b2
commit 54ba635e34
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -0,0 +1,62 @@
---
title: "Galene"
weight: 1
# bookFlatSection: false
# bookToc: true
# bookHidden: false
# bookCollapseSection: false
# bookComments: false
# bookSearchExclude: false
---
# Galene
## Installation
Installer le paquet AUR `galene`.
## Configuration
```fish
galene-password-generator [-user $USERNAME] $PASSWORD
```
```json
// /var/lib/galene/data/config.json
{
"canonicalHost": "galene.edgarpierre.fr",
"admin": [
{
"username": "...",
"password": {
"type": "pbkdf2",
"hash": "sha-256",
"key": "...",
"salt": "...",
"iterations": 4096
}
}
]
}
```
```json
// /var/lib/galene/groups/main.json
// Salon qui permet la connection en lecture sans mot de passe
{
"op": [
{
"username": "...",
"password": {
"type": "pbkdf2",
"hash": "sha-256",
"key": "...",
"salt": "...",
"iterations": 4096
}
}
],
"other": [{}],
"allow-recording": true,
"allow-subgroups": true,
"allow-anonymous": true
}
```