Skip to content

Commit 717f550

Browse files
committed
cmd/go-cache-plugin: fix various outdated help text
1 parent 2300b8b commit 717f550

File tree

3 files changed

+23
-15
lines changed

3 files changed

+23
-15
lines changed

cmd/go-cache-plugin/commands.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ var serveFlags struct {
5656
Plugin int `flag:"plugin,default=$GOCACHE_PLUGIN,Plugin service port (required)"`
5757
HTTP string `flag:"http,default=$GOCACHE_HTTP,HTTP service address ([host]:port)"`
5858
ModProxy bool `flag:"modproxy,default=$GOCACHE_MODPROXY,Enable a Go module proxy (requires --http)"`
59-
RevProxy string `flag:"revproxy,default=$GOCACHE_REVPROXY,Reverse proxy these hosts (comma-separated)"`
59+
RevProxy string `flag:"revproxy,default=$GOCACHE_REVPROXY,Reverse proxy these hosts (comma-separated; requires --http)"`
6060
SumDB string `flag:"sumdb,default=$GOCACHE_SUMDB,SumDB servers to proxy for (comma-separated)"`
6161
}
6262

cmd/go-cache-plugin/go-cache-plugin.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ the --cache-dir flag or GOCACHE_DIR environment.`,
4141
Commands: []*command.C{
4242
{
4343
Name: "serve",
44-
Usage: "--socket <path>",
44+
Usage: "--plugin <port>",
4545
Help: `Run a cache server.
4646
4747
In this mode, the cache server listens for connections on a socket instead of
4848
serving directly over stdin/stdout. The "connect" command adapts the direct
4949
interface to this one.
5050
51-
By default, only the build cache is exported via the --socket path.
51+
By default, only the build cache is exported via the --plugin port.
5252
5353
If --http is set, the server also exports an HTTP server at that address.
5454
By default, this exports only /debug endpoints, including metrics.
@@ -58,18 +58,19 @@ When --http is enabled, the following options are available:
5858
http://<host>:<port>/mod/.
5959
6060
- When --revproxy is set, the server also hosts a caching reverse proxy for the
61-
specified hosts at http://<host>:<port>/revproxy.`,
61+
specified hosts at http://<host>:<port>. The reverse proxy handles both HTTP
62+
and HTTPS requests, and caches immutable successful responses.`,
6263

6364
SetFlags: command.Flags(flax.MustBind, &serveFlags),
6465
Run: command.Adapt(runServe),
6566
},
6667
{
6768
Name: "connect",
68-
Usage: "<socket-path>",
69+
Usage: "<port>",
6970
Help: `Connect to a remote cache server.
7071
7172
This mode bridges stdin/stdout to a cache server (see the "serve" command)
72-
listening on a socket.`,
73+
listening on the specified port.`,
7374

7475
Run: command.Adapt(runConnect),
7576
},

cmd/go-cache-plugin/help.go

+16-9
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ Use the "serve" subcommand:
8282
8383
go-cache-plugin serve \
8484
--cache-dir=/tmp/gocache --bucket=$B \
85-
--socket /var/run/cache.sock
85+
--plugin $PORT
8686
8787
You can then use the "connect" subcommand to wire up the toolchain:
8888
89-
export GOCACHEPROG="go-cache-plugin connect /var/run/cache.sock"
89+
export GOCACHEPROG="go-cache-plugin connect $PORT"
9090
9191
In this mode, the server must have credentials to access to S3, but the
9292
toolchain process does not need AWS credentials.`,
@@ -101,15 +101,17 @@ given address:
101101
102102
go-cache-plugin serve ... --http=localhost:5970 --modproxy
103103
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/":
105106
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"
108109
go build ...
109110
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:
111113
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"
113115
114116
See also: https://proxy.golang.org/`,
115117
},
@@ -122,10 +124,15 @@ proxy for the specified hosts, given as a comma-separated list:
122124
123125
go-cache-plugin serve ... \
124126
--http=localhost:5970 \
125-
--revproxy='api.example.com,*.example2.com'
127+
--revproxy='api.example.com,www.example.com'
126128
127129
When this is enabled, you can configure this address as an HTTP proxy:
128130
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.`,
130137
},
131138
}

0 commit comments

Comments
 (0)