1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-02 13:53:23 +01:00
bitwarden-server/src/Admin/appsettings.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2018-03-21 17:57:43 +01:00
{
2018-03-21 19:26:49 +01:00
"globalSettings": {
"selfHosted": false,
"siteName": "Bitwarden",
"projectName": "Admin",
"stripeApiKey": "SECRET",
"baseServiceUri": {
2018-07-12 23:33:17 +02:00
"vault": "https://localhost:8080",
2018-03-21 19:26:49 +01:00
"api": "http://localhost:4000",
"identity": "http://localhost:33656",
"admin": "http://localhost:62911",
2018-08-16 19:50:41 +02:00
"notifications": "http://localhost:61840",
"internalNotifications": "http://localhost:61840",
"internalAdmin": "http://localhost:62911",
"internalIdentity": "http://localhost:33656",
"internalApi": "http://localhost:4000",
"internalVault": "http://localhost:4001"
2018-03-21 19:26:49 +01:00
},
"sqlServer": {
"connectionString": "SECRET"
},
"mail": {
"sendGridApiKey": "SECRET",
"replyToEmail": "hello@bitwarden.com"
},
"identityServer": {
"certificateThumbprint": "SECRET"
},
"dataProtection": {
"certificateThumbprint": "SECRET"
},
"storage": {
"connectionString": "SECRET"
},
"events": {
"connectionString": "SECRET"
},
"documentDb": {
"uri": "SECRET",
"key": "SECRET"
},
"notificationHub": {
"connectionString": "SECRET",
"hubName": "SECRET"
2018-03-21 17:57:43 +01:00
}
2018-03-21 19:26:49 +01:00
},
"adminSettings": {
"admins": ""
},
"braintree": {
"production": false,
"merchantId": "SECRET",
"publicKey": "SECRET",
"privateKey": "SECRET"
2018-03-21 17:57:43 +01:00
}
}