From 4ce28231fdb732f7658f77ac0cb97625c428c6d0 Mon Sep 17 00:00:00 2001 From: canglan Date: Tue, 23 Jun 2026 17:38:57 +0800 Subject: [PATCH] fix: switch GOPROXY to mirrors.aliyun.com (goproxy.cn resolves to overseas IP) --- backend-go/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend-go/Makefile b/backend-go/Makefile index 17d76c9..5c1b647 100644 --- a/backend-go/Makefile +++ b/backend-go/Makefile @@ -1,5 +1,5 @@ -# Go 代理(国内环境使用 goproxy.cn) -GOPROXY ?= https://goproxy.cn,direct +# Go 代理(国内环境使用阿里云镜像) +GOPROXY ?= https://mirrors.aliyun.com/goproxy/,direct GOPRIVATE ?= hz-gitea.sea-studio.top .PHONY: tidy build run dev clean