From 1a956538945acf2f5a20a63e17178aefe42eade4 Mon Sep 17 00:00:00 2001 From: YGXB_net Date: Mon, 27 Jul 2026 00:55:50 +0800 Subject: [PATCH] =?UTF-8?q?config:=20=E6=9B=B4=E6=96=B0=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E5=99=A8=E5=9C=B0=E5=9D=80=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 注释掉本地回环地址配置 - 修改默认URL为生产环境地址 http://112.124.71.39:8080 - 保留其他配置项不变 --- internal/config/config.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index a8f2087..eb05eb8 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -34,7 +34,8 @@ const ( func InitConfig() { // 设置默认配置 defaultConfig := Config{ - Url: "http://127.0.0.1:8080", + //Url: "http://127.0.0.1:8080", + Url: "http://112.124.71.39:8080", Token: "", ThreadCount: 10, HandleFileCount: 25,