-
Notifications
You must be signed in to change notification settings - Fork 366
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instructions for privately hosted go modules #182
Comments
I am running into similar issues but not always. Sometimes I need to restart the service a few times and then suddenly it starts to function. |
After further investigation, I found out that most of the issues I was running was caused by:
I hope this feedback is useful. |
I meet that issue also, it's running good after setting GOPRIVATE on proxy machine |
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 ssh access (and populated GOPATH). I am able to use this to pull code from a machine without private repo access, but there's some caveats with it.
The client computer didn't appear to use the proxy if it could call git directly. So I removed ssh credentials to prevent this path. If I don't specify
--insecure
, thengo get
fails on sumdb checks.This does not work, fails on sumdb
Disabling sumdb checks makes it work
The text was updated successfully, but these errors were encountered: