mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Fix SQL Connection String (#1584)
* Update SQL connection string storage method * Revert Docker Compose template * Revert Docker Compose Builder version back to 3
This commit is contained in:
parent
c22e48c1b4
commit
ff8d736e8b
@ -75,7 +75,7 @@ namespace Bit.Setup
|
|||||||
_globalOverrideValues = new Dictionary<string, string>
|
_globalOverrideValues = new Dictionary<string, string>
|
||||||
{
|
{
|
||||||
["globalSettings__baseServiceUri__vault"] = _context.Config.Url,
|
["globalSettings__baseServiceUri__vault"] = _context.Config.Url,
|
||||||
["globalSettings__sqlServer__connectionString"] = $"'{dbConnectionString}'",
|
["globalSettings__sqlServer__connectionString"] = $"\"{dbConnectionString.Replace("\"", "\\\"")}\"",
|
||||||
["globalSettings__identityServer__certificatePassword"] = _context.Install?.IdentityCertPassword,
|
["globalSettings__identityServer__certificatePassword"] = _context.Install?.IdentityCertPassword,
|
||||||
["globalSettings__internalIdentityKey"] = _context.Stub ? "RANDOM_IDENTITY_KEY" :
|
["globalSettings__internalIdentityKey"] = _context.Stub ? "RANDOM_IDENTITY_KEY" :
|
||||||
Helpers.SecureRandomString(64, alpha: true, numeric: true),
|
Helpers.SecureRandomString(64, alpha: true, numeric: true),
|
||||||
@ -142,7 +142,7 @@ namespace Bit.Setup
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
_values.Add(lineParts[0], value);
|
_values.Add(lineParts[0], value.Replace("\\\"", "\""));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -105,7 +105,7 @@ namespace Bit.Setup
|
|||||||
{
|
{
|
||||||
if (line.StartsWith($"{key}="))
|
if (line.StartsWith($"{key}="))
|
||||||
{
|
{
|
||||||
return line.Split(new char[] { '=' }, 2)[1].Trim('"');
|
return line.Split(new char[] { '=' }, 2)[1].Trim('"').Replace("\\\"", "\"");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user