Change DBssl to string

This commit is contained in:
Orville Q. Song
2022-11-04 01:11:22 +08:00
committed by Kristoffer Dalby
parent 99e33181b2
commit 72b9803a08
2 changed files with 9 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ type Config struct {
DBname string
DBuser string
DBpass string
DBssl bool
DBssl string
TLS TLSConfig
@@ -545,7 +545,7 @@ func GetHeadscaleConfig() (*Config, error) {
DBname: viper.GetString("db_name"),
DBuser: viper.GetString("db_user"),
DBpass: viper.GetString("db_pass"),
DBssl: viper.GetBool("db_ssl"),
DBssl: viper.GetString("db_ssl"),
TLS: GetTLSConfig(),