mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-22 03:41:26 +00:00
Merge branch 'master' of git.selfprivacy.org:inex/selfprivacy-nixos-config
This commit is contained in:
commit
18d7a56e96
28
README.md
28
README.md
|
@ -12,24 +12,24 @@ Example JSON config:
|
|||
```json
|
||||
{
|
||||
"backblaze": {
|
||||
"accountId": "KEY ID",
|
||||
"accountKey": "KEY",
|
||||
"bucket": "selfprivacy"
|
||||
"accountId": "BACKBLAZE_KEY_ID",
|
||||
"accountKey": "BACKBLAZE_ACCOUNT_KEY",
|
||||
"bucket": "BACKBLAZE_BUCKET_NAME"
|
||||
},
|
||||
"bitwarden": {
|
||||
"enable": true
|
||||
},
|
||||
"cloudflare": {
|
||||
"apiKey": "KEY"
|
||||
"apiKey": "CF_TOKEN"
|
||||
},
|
||||
"databasePassword": "PASSWORD",
|
||||
"domain": "meow-corp.xyz",
|
||||
"hashedMasterPassword": "HASHED PASSWORD",
|
||||
"hostname": "meow-corp",
|
||||
"databasePassword": "DB_PASSWORD",
|
||||
"domain": "DOMAIN",
|
||||
"hashedMasterPassword": "HASHED_PASSWORD",
|
||||
"hostname": "DOMAIN",
|
||||
"nextcloud": {
|
||||
"enable": true,
|
||||
"adminPassword": "PASS",
|
||||
"databasePassword": "PASS"
|
||||
"adminPassword": "PASSWORD",
|
||||
"databasePassword": "PASSWORD"
|
||||
},
|
||||
"gitea": {
|
||||
"enable": true
|
||||
|
@ -44,7 +44,7 @@ Example JSON config:
|
|||
"enable": true
|
||||
},
|
||||
"timezone": "Europe/Moscow",
|
||||
"resticPassword": "PASS",
|
||||
"resticPassword": "PASSWORD",
|
||||
"ssh": {
|
||||
"enable": true,
|
||||
"rootSshKeys": [
|
||||
|
@ -52,11 +52,11 @@ Example JSON config:
|
|||
],
|
||||
"passwordAuthentication": true
|
||||
},
|
||||
"username": "owner",
|
||||
"username": "LUSER",
|
||||
"users": [
|
||||
{
|
||||
"hashedPassword": "HASHED PASSWORD",
|
||||
"username": "tester"
|
||||
"hashedPassword": "OTHER_USER_HASHED_PASSWORD",
|
||||
"username": "OTHER_USER"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue