config: 更新默认服务器地址配置

- 注释掉本地回环地址配置
- 修改默认URL为生产环境地址 http://112.124.71.39:8080
- 保留其他配置项不变
This commit is contained in:
2026-07-28 09:21:12 +08:00
parent e15debc962
commit 1a95653894
+2 -1
View File
@@ -34,7 +34,8 @@ const (
func InitConfig() { func InitConfig() {
// 设置默认配置 // 设置默认配置
defaultConfig := Config{ defaultConfig := Config{
Url: "http://127.0.0.1:8080", //Url: "http://127.0.0.1:8080",
Url: "http://112.124.71.39:8080",
Token: "", Token: "",
ThreadCount: 10, ThreadCount: 10,
HandleFileCount: 25, HandleFileCount: 25,