From c8f3e8ab4d2fc8359266399484f863f3515dddfa Mon Sep 17 00:00:00 2001
From: Andy Hsu <i@nn.ci>
Date: Thu, 23 Feb 2023 22:33:54 +0800
Subject: [PATCH] feat!: skip tls insecure verify by default

---
 internal/conf/config.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/internal/conf/config.go b/internal/conf/config.go
index 2e7011f7c62..3c027bdc0ef 100644
--- a/internal/conf/config.go
+++ b/internal/conf/config.go
@@ -77,6 +77,6 @@ func DefaultConfig() *Config {
 			MaxAge:     28,
 		},
 		MaxConnections:        0,
-		TlsInsecureSkipVerify: false,
+		TlsInsecureSkipVerify: true,
 	}
 }