mirror of
https://github.com/bitwarden/server
synced 2025-12-24 12:13:17 +00:00
* Add self host notification launch settings * Exclude current context from push for password updates This is needed to allow the current context to process a key rotation if one is being done. Does not change any other call to `PushLogOut`. * Revert inverted exclude logic This exclude is referring to exempting the requesting client from the notification push.
37 lines
907 B
JSON
37 lines
907 B
JSON
{
|
|
"iisSettings": {
|
|
"windowsAuthentication": false,
|
|
"anonymousAuthentication": true,
|
|
"iisExpress": {
|
|
"applicationUrl": "http://localhost:61840",
|
|
"sslPort": 0
|
|
}
|
|
},
|
|
"profiles": {
|
|
"IIS Express": {
|
|
"commandName": "IISExpress",
|
|
"launchBrowser": false,
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
}
|
|
},
|
|
"Notifications": {
|
|
"commandName": "Project",
|
|
"launchBrowser": false,
|
|
"applicationUrl": "http://localhost:61840",
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
}
|
|
},
|
|
"Notifications-SelfHost": {
|
|
"commandName": "Project",
|
|
"launchBrowser": false,
|
|
"applicationUrl": "http://localhost:61841",
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development",
|
|
"developSelfHosted": "true"
|
|
}
|
|
}
|
|
}
|
|
}
|