mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
62beb7d1e8
* Add Linux script to create dev certificates A script based on the macOS script that can be used on Linux, either Debian or Red-hat derived distros. * Fix invalid trailing comma in secrets json example
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
{
|
|
"adminSettings": {
|
|
"admins": "admin@localhost,owner@localhost,cs@localhost,billing@localhost,sales@localhost",
|
|
"role": {
|
|
"owner": "owner@localhost",
|
|
"admin": "admin@localhost",
|
|
"cs": "cs@localhost",
|
|
"billing": "billing@localhost",
|
|
"sales": "sales@localhost"
|
|
}
|
|
},
|
|
"globalSettings": {
|
|
"selfHosted": true,
|
|
"sqlServer": {
|
|
"connectionString": "Server=localhost;Database=vault_dev;User Id=SA;Password=SET_A_PASSWORD_HERE_123;Encrypt=True;TrustServerCertificate=True"
|
|
},
|
|
"postgreSql": {
|
|
"connectionString": "Host=localhost;Username=postgres;Password=SET_A_PASSWORD_HERE_123;Database=vault_dev;Include Error Detail=true"
|
|
},
|
|
"mySql": {
|
|
"connectionString": "server=localhost;uid=root;pwd=SET_A_PASSWORD_HERE_123;database=vault_dev"
|
|
},
|
|
"sqlite": {
|
|
"connectionString": "Data Source=/path/to/bitwardenServer/repository/server/dev/db/bitwarden.sqlite"
|
|
},
|
|
"identityServer": {
|
|
"certificateThumbprint": "<your Identity certificate thumbprint with no spaces>"
|
|
},
|
|
"dataProtection": {
|
|
"certificateThumbprint": "<your Data Protection certificate thumbprint with no spaces>"
|
|
},
|
|
"installation": {
|
|
"id": "<your Installation Id>",
|
|
"key": "<your Installation Key>"
|
|
},
|
|
"licenseDirectory": "<full path to license directory>"
|
|
}
|
|
}
|