mirror of
https://github.com/bitwarden/server.git
synced 2024-12-13 15:36:45 +01:00
101 lines
2.1 KiB
JSON
101 lines
2.1 KiB
JSON
{
|
|
"globalSettings": {
|
|
"siteName": "bitwarden",
|
|
"baseVaultUri": "http://localhost:4001",
|
|
"jwtSigningKey": "THIS IS A SECRET. IT KEEPS YOUR TOKEN SAFE. :)",
|
|
"sqlServer": {
|
|
"connectionString": "SECRET"
|
|
},
|
|
"mail": {
|
|
"apiKey": "SECRET",
|
|
"replyToEmail": "hello@bitwarden.com"
|
|
},
|
|
"loggr": {
|
|
"logKey": "SECRET",
|
|
"apiKey": "SECRET"
|
|
},
|
|
"push": {
|
|
"apnsCertificateThumbprint": "SECRET",
|
|
"apnsCertificatePassword": "SECRET",
|
|
"gcmSenderId": "SECRET",
|
|
"gcmApiKey": "SECRET",
|
|
"gcmAppPackageName": "com.x8bit.bitwarden"
|
|
},
|
|
"identityServer": {
|
|
"certificateThumbprint": "SECRET"
|
|
},
|
|
"storage": {
|
|
"connectionString": "SECRET"
|
|
},
|
|
"documentDb": {
|
|
"uri": "SECRET",
|
|
"key": "SECRET"
|
|
}
|
|
},
|
|
"IpRateLimitOptions": {
|
|
"EnableEndpointRateLimiting": true,
|
|
"StackBlockedRequests": false,
|
|
"RealIpHeader": "CF-Connecting-IP",
|
|
"ClientIdHeader": "X-ClientId",
|
|
"HttpStatusCode": 429,
|
|
"IpWhitelist": [],
|
|
"EndpointWhitelist": [],
|
|
"ClientWhitelist": [],
|
|
"GeneralRules": [
|
|
{
|
|
"Endpoint": "*",
|
|
"Period": "1m",
|
|
"Limit": 60
|
|
},
|
|
{
|
|
"Endpoint": "*",
|
|
"Period": "1s",
|
|
"Limit": 5
|
|
},
|
|
{
|
|
"Endpoint": "post:/auth/token",
|
|
"Period": "1m",
|
|
"Limit": 10
|
|
},
|
|
{
|
|
"Endpoint": "post:/auth/token/two-factor",
|
|
"Period": "1m",
|
|
"Limit": 5
|
|
},
|
|
{
|
|
"Endpoint": "post:/accounts/register",
|
|
"Period": "1m",
|
|
"Limit": 2
|
|
},
|
|
{
|
|
"Endpoint": "post:/account/password-hint",
|
|
"Period": "1m",
|
|
"Limit": 2
|
|
},
|
|
{
|
|
"Endpoint": "post:/account/email-token",
|
|
"Period": "1m",
|
|
"Limit": 2
|
|
},
|
|
{
|
|
"Endpoint": "post:/account/email",
|
|
"Period": "1m",
|
|
"Limit": 5
|
|
},
|
|
{
|
|
"Endpoint": "put:/account/email",
|
|
"Period": "1m",
|
|
"Limit": 5
|
|
},
|
|
{
|
|
"Endpoint": "get:/alive",
|
|
"Period": "1m",
|
|
"Limit": 5
|
|
}
|
|
]
|
|
},
|
|
"IpRateLimitPolicies": {
|
|
"IpRules": []
|
|
}
|
|
}
|