Change DBssl to string
This commit is contained in:
parent
99e33181b2
commit
72b9803a08
2 changed files with 9 additions and 4 deletions
|
|
@ -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(),
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue