Add galene config
This commit is contained in:
parent
ac271564b2
commit
54ba635e34
1 changed files with 62 additions and 0 deletions
62
content/docs/server/services/galene.md
Normal file
62
content/docs/server/services/galene.md
Normal 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
|
||||
}
|
||||
```
|
Loading…
Reference in a new issue