From 907a5ee4a67b8d579888e4360700ec1e81d82456 Mon Sep 17 00:00:00 2001 From: Anthony ARNAUD Date: Fri, 5 Apr 2024 22:14:41 -0400 Subject: [PATCH] The controler is hardcoded to use the port 443 --- utils/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/config.go b/utils/config.go index 27b7fde..9a9a4b5 100644 --- a/utils/config.go +++ b/utils/config.go @@ -33,7 +33,7 @@ func GetConfig() *Config { viper.ReadInConfig() viper.SetDefault("LOG_LEVEL", "info") - viper.SetDefault("TLS_PORT", 8443) + viper.SetDefault("TLS_PORT", 443) // The controler is hardcoded to use this port viper.SetDefault("MQTT_BROKER_PORT", 1883) viper.SetDefault("MQTT_CLIENT_ID", "akwatek") viper.SetDefault("MQTT_BASE_TOPIC", "akwatek")