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 ```json
{ {
"backblaze": { "backblaze": {
"accountId": "KEY ID", "accountId": "BACKBLAZE_KEY_ID",
"accountKey": "KEY", "accountKey": "BACKBLAZE_ACCOUNT_KEY",
"bucket": "selfprivacy" "bucket": "BACKBLAZE_BUCKET_NAME"
}, },
"bitwarden": { "bitwarden": {
"enable": true "enable": true
}, },
"cloudflare": { "cloudflare": {
"apiKey": "KEY" "apiKey": "CF_TOKEN"
}, },
"databasePassword": "PASSWORD", "databasePassword": "DB_PASSWORD",
"domain": "meow-corp.xyz", "domain": "DOMAIN",
"hashedMasterPassword": "HASHED PASSWORD", "hashedMasterPassword": "HASHED_PASSWORD",
"hostname": "meow-corp", "hostname": "DOMAIN",
"nextcloud": { "nextcloud": {
"enable": true, "enable": true,
"adminPassword": "PASS", "adminPassword": "PASSWORD",
"databasePassword": "PASS" "databasePassword": "PASSWORD"
}, },
"gitea": { "gitea": {
"enable": true "enable": true
@ -44,7 +44,7 @@ Example JSON config:
"enable": true "enable": true
}, },
"timezone": "Europe/Moscow", "timezone": "Europe/Moscow",
"resticPassword": "PASS", "resticPassword": "PASSWORD",
"ssh": { "ssh": {
"enable": true, "enable": true,
"rootSshKeys": [ "rootSshKeys": [
@ -52,11 +52,11 @@ Example JSON config:
], ],
"passwordAuthentication": true "passwordAuthentication": true
}, },
"username": "owner", "username": "LUSER",
"users": [ "users": [
{ {
"hashedPassword": "HASHED PASSWORD", "hashedPassword": "OTHER_USER_HASHED_PASSWORD",
"username": "tester" "username": "OTHER_USER"
} }
] ]
} }