mirror of
https://github.com/gomods/athens
synced 2026-02-03 08:40:31 +00:00
* downloadProtocol: support multi-proxy environments with DownloadFile * remove debugging lines * update config tests * download/mode: add tests for DownloadFile and friends * add documentation to Download File
17 lines
264 B
HCL
17 lines
264 B
HCL
downloadURL = "https://proxy.golang.org"
|
|
|
|
mode = "async_redirect"
|
|
|
|
download "github.com/gomods/*" {
|
|
mode = "sync"
|
|
}
|
|
|
|
download "golang.org/x/*" {
|
|
mode = "none"
|
|
}
|
|
|
|
download "github.com/pkg/*" {
|
|
mode = "redirect"
|
|
downloadURL = "https://gocenter.io"
|
|
}
|