Merge branch 'master' of git.selfprivacy.org:inex/selfprivacy-nixos-config

master
Inex Code 2021-11-16 13:28:23 +03:00
commit 18d7a56e96
1 changed files with 14 additions and 14 deletions

View File

@ -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"
}
]
}