blog/content/docs/server/services/galene.md

62 lines
978 B
Markdown

---
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
}
```