mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-22 11: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
|
```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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue