@@ -82,11 +82,11 @@ Use the "serve" subcommand:
82
82
83
83
go-cache-plugin serve \
84
84
--cache-dir=/tmp/gocache --bucket=$B \
85
- --socket /var/run/cache.sock
85
+ --plugin $PORT
86
86
87
87
You can then use the "connect" subcommand to wire up the toolchain:
88
88
89
- export GOCACHEPROG="go-cache-plugin connect /var/run/cache.sock "
89
+ export GOCACHEPROG="go-cache-plugin connect $PORT "
90
90
91
91
In this mode, the server must have credentials to access to S3, but the
92
92
toolchain process does not need AWS credentials.` ,
@@ -101,15 +101,17 @@ given address:
101
101
102
102
go-cache-plugin serve ... --http=localhost:5970 --modproxy
103
103
104
- To use the module proxy, set the standard GOPROXY environment variable:
104
+ To use the module proxy, set the standard GOPROXY environment variable.
105
+ The module proxy serves under the path "/mod/":
105
106
106
- export GOPROXY=localhost:5970
107
- export GOCACHEPROG="go-cache-plugin connect /var/run/cache.sock "
107
+ export GOPROXY=http:// localhost:5970/mod
108
+ export GOCACHEPROG="go-cache-plugin connect $PORT "
108
109
go build ...
109
110
110
- To use the sum DB proxy, set the GOSUMDB environment variable:
111
+ To use the sum DB proxy, set the GOSUMDB environment variable.
112
+ The proxy path for a given sumdb (e.g., sum.golang.org) has this format:
111
113
112
- export GOSUMDB="sum.golang.org http://localhost:5970/sumdb/sum.golang.org"
114
+ export GOSUMDB="sum.golang.org http://localhost:5970/mod/ sumdb/sum.golang.org"
113
115
114
116
See also: https://proxy.golang.org/` ,
115
117
},
@@ -122,10 +124,15 @@ proxy for the specified hosts, given as a comma-separated list:
122
124
123
125
go-cache-plugin serve ... \
124
126
--http=localhost:5970 \
125
- --revproxy='api.example.com,*.example2 .com'
127
+ --revproxy='api.example.com,www.example .com'
126
128
127
129
When this is enabled, you can configure this address as an HTTP proxy:
128
130
129
- HTTP_PROXY=localhost:5970 curl https://api.example.com/foo` ,
131
+ HTTPS_PROXY=localhost:5970 curl https://api.example.com/foo
132
+
133
+ The proxy supports both HTTP and HTTPS backends. For HTTPS proxy targets, the
134
+ server generates its own TLS certificate, and tries to install a custom signing
135
+ cert so that other tools will validate it. The ability to do this varies by
136
+ system and configuration, however.` ,
130
137
},
131
138
}
0 commit comments