1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

revert prefixing service names with bitwarden-

This commit is contained in:
Kyle Spearrin
2017-12-21 11:18:36 -05:00
parent 8609614711
commit 3425e95bf6
4 changed files with 17 additions and 17 deletions

View File

@ -35,7 +35,7 @@ namespace Bit.Setup
private void Init(bool forInstall)
{
var dbConnectionString = Helpers.MakeSqlConnectionString("bitwarden-mssql", "vault", "sa", DatabasePassword);
var dbConnectionString = Helpers.MakeSqlConnectionString("mssql", "vault", "sa", DatabasePassword);
_globalValues = new Dictionary<string, string>
{
["globalSettings__baseServiceUri__vault"] = Url,
@ -125,7 +125,7 @@ globalSettings__selfHosted=true
globalSettings__baseServiceUri__vault=http://localhost
globalSettings__baseServiceUri__api=http://localhost/api
globalSettings__baseServiceUri__identity=http://localhost/identity
globalSettings__baseServiceUri__internalIdentity=http://bitwarden-identity
globalSettings__baseServiceUri__internalIdentity=http://identity
globalSettings__pushRelayBaseUri=https://push.bitwarden.com
globalSettings__installation__identityUri=https://identity.bitwarden.com
");