diff --git a/frontend/settings.go b/frontend/settings.go index a6bcb59..d18d10a 100644 --- a/frontend/settings.go +++ b/frontend/settings.go @@ -33,6 +33,7 @@ func parseSettings() { viper.AddConfigPath(".") viper.AddConfigPath("/etc/bird-lg") viper.SetConfigName("bird-lg") + viper.AllowEmptyEnv(true) viper.AutomaticEnv() viper.SetEnvPrefix("birdlg") viper.SetEnvKeyReplacer(strings.NewReplacer("-", "_", ".", "_")) diff --git a/proxy/settings.go b/proxy/settings.go index 946744f..0129cc0 100644 --- a/proxy/settings.go +++ b/proxy/settings.go @@ -23,6 +23,7 @@ func parseSettings() { viper.AddConfigPath(".") viper.AddConfigPath("/etc/bird-lg") viper.SetConfigName("bird-lgproxy") + viper.AllowEmptyEnv(true) viper.AutomaticEnv() viper.SetEnvPrefix("birdlg") viper.SetEnvKeyReplacer(strings.NewReplacer("-", "_", ".", "_"))