From f5ab86c233a77401056ee941be64952ab8072b56 Mon Sep 17 00:00:00 2001 From: yusing Date: Fri, 6 Feb 2026 23:28:35 +0800 Subject: [PATCH] fix(route): remove incorrect default values for bind and port --- internal/route/route.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/internal/route/route.go b/internal/route/route.go index f7d20675..38bfec1b 100644 --- a/internal/route/route.go +++ b/internal/route/route.go @@ -946,13 +946,6 @@ func (r *Route) Finalize() { if r.Bind == "" { r.Bind = "0.0.0.0" } - default: - if r.Bind == "" { - r.Bind = common.ProxyHTTPSHost - } - if r.Port.Proxy == 0 { - r.Port.Proxy = common.ProxyHTTPSPort - } } r.Port.Listening, r.Port.Proxy = lp, pp