Giter VIP home page Giter VIP logo

Comments (5)

aofei avatar aofei commented on June 7, 2024

Looks like your local network error. Please check the local network your Goproxy program is running on, or specify an upstream proxy for it like this.

from goproxy.

zoulux avatar zoulux commented on June 7, 2024
package main

import (
	"flag"
	"fmt"
	"net/http"
	"os"

	"github.com/goproxy/goproxy"
)

var cacheDir string

func init() {
	flag.StringVar(&cacheDir, "cache", "cache", "缓存路径")
	flag.Parse()
}

func main() {

	err := http.ListenAndServe("localhost:8080", &goproxy.Goproxy{
		GoBinEnv: append(
			os.Environ(),
			"GOPROXY=https://goproxy.cn,direct", // 使用 Goproxy.cn 作为上游代理
			"GOPRIVATE=git.datagrand.com",       // 解决私有模块的拉取问题(比如可以配置成公司内部的代码源)
		),
		ProxiedSUMDBs: []string{
			"sum.golang.org https://goproxy.cn/sumdb/sum.golang.org", // 代理默认的校验和数据库
		},
		Cacher: goproxy.DirCacher("/Users/jake/workspace/goproxy/cache"),
	})

	if err != nil {
		fmt.Println(err.Error())
		return
	}
}

from goproxy.

zoulux avatar zoulux commented on June 7, 2024

这是源码,可以测试一下

from goproxy.

aofei avatar aofei commented on June 7, 2024

同样的代码,我这里跑着是不存在任何问题的。

2021/05/20 18:00:09 github.com/siddontang/go-mysql/mysql@latest: git fetch -f origin refs/heads/:refs/heads/ refs/tags/:refs/tags/ in ...
fatal: unable to access 'https://github.com/siddontang/go-mysql/': Failed to connect to github.com port 443: Operation timed out

这个错误指的是你程序所跑在的本地网络存在问题,所跑环境无法访问到 github.com:443,和你的代码本身是无关的。

from goproxy.

aofei avatar aofei commented on June 7, 2024

鉴于问题已回答,这个 issue 我就先关闭了哈,如果还有其他问题欢迎随时开新 issue 提问~

from goproxy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.