1
0
mirror of https://github.com/bitwarden/server synced 2025-12-27 13:43:18 +00:00

[PS-2185] Update defaults for SQL Server to trust the server certificate (#2563)

* Update defaults for SQL Server to trust the server certificate

* Use an explicit
This commit is contained in:
Matt Bishop
2023-01-10 17:13:33 -05:00
committed by GitHub
parent df2edcfb8c
commit 503630497e
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
"globalSettings": {
"selfHosted": true,
"sqlServer": {
"connectionString": "Server=localhost;Database=vault_dev;User Id=SA;Password=SET_A_PASSWORD_HERE_123;"
"connectionString": "Server=localhost;Database=vault_dev;User Id=SA;Password=SET_A_PASSWORD_HERE_123;Encrypt=True;TrustServerCertificate=True"
},
"postgreSql": {
"connectionString": "Host=localhost;Username=postgres;Password=SET_A_PASSWORD_HERE_123;Database=vault_dev;Include Error Detail=true",