goproxy icon indicating copy to clipboard operation
goproxy copied to clipboard

A global proxy for Go modules.

Results 14 goproxy issues
Sort by recently updated
recently updated
newest added

package: github.com/StackExchange/[email protected] ``` curl https://goproxy.io/sumdb/sum.golang.org/lookup/github.com/!stack!exchange/[email protected] ``` output ``` 5962738 github.com/StackExchange/wmi v1.2.0 h1:noJEYkMQVlFCEAc+2ma5YyRhlfjcWfZqk5sBRYozdyM= github.com/StackExchange/wmi v1.2.0/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= go.sum database tree 11824063 WCl512Pdu5vjuBVhKZhK+XZw6Xp/DWkqqvzSQdp+8q4= — sum.golang.org Az3grjvrvdlD1XXg3nTv0Xpy0rz1iE0usJdqgypkJPeH4tSKI4P0SBoKRlVee1N6BVXR7j7kWLsa7SsnzV7lxL/LPQA= ``` ``` curl https://goproxy.io/sumdb/gosum.io/lookup/github.com/!stack!exchange/[email protected] ``` output ```...

刚刚拉取代码的时候,出现了以下提示 ```shell > go get -u github.com/panjf2000/ants/v2 go: downloading github.com/panjf2000/ants v1.2.1 go: downloading github.com/panjf2000/ants/v2 v2.5.0 go get: github.com/panjf2000/ants/[email protected]: Get "https://proxy.golang.com.cn/github.com/panjf2000/ants/v2/@v/v2.5.0.zip": dial tcp: lookup proxy.golang.com.cn: no such host ```

We are hitting sporadic network failures on our builds when accessing goproxy.io (which is the 2nd proxy entry in GOPROXY). Thus we have removed goproxy.io from our proxy setting: https://github.com/kubevirt/project-infra/pull/2151...

It is clear that goproxy can be used for private repositories, but it is unclear how to correctly set this up. I have put goproxy on a computer with full...

在企业内部的gitlab仓库,一般都是私有的仓库,我看已经有了一个`https://user.goproxy.io`,但是对于企业而言,可能更需要的还是自己独立搭建一个goproxy。我基于现有的docker搭建了之后,一方面不知道开源的goproxy是否有Private功能,另一方面也不清楚uri是怎么设计的,如何进入类似于`https://user.goproxy.io`的配置页面。 还请释疑,谢谢

I set up the service using the docker, but I can't find how to change to https to access goproxy

NeedsFix

`github.com/go-kit/[email protected]: verifying module: github.com/go-kit/[email protected]: reading https://goproxy.io/sumdb/sum.golang.org/tile/8/0/x003/099: http2: server sent GOAWAY and closed the connection; LastStreamID=1999, ErrCode=NO_ERROR, debug=""` I got the error when I run `go mod download`.

无外网环境下搭建goproxyio,那么项目中需要使用一些包。有哪些方法可以把要使用的包上传到goproxyio呢?

in file proxy/route.go, use path.Dir(file) to get the dir of cache file; but in windows it will just return ".", because the path separator in path.Dir(path string) is "\\" ,...