Browse Source
caddyhttp: reverseproxy: clarify warning for -insecure (#4379)
The question would only receive bad answers so it's better
to just say what the option actually does.
master
Simão Gomes Viana
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
modules/caddyhttp/reverseproxy/command.go
|
@ -59,7 +59,7 @@ default, all incoming headers are passed through unmodified.) |
|
|
fs.String("from", "localhost", "Address on which to receive traffic") |
|
|
fs.String("from", "localhost", "Address on which to receive traffic") |
|
|
fs.String("to", "", "Upstream address to which to to proxy traffic") |
|
|
fs.String("to", "", "Upstream address to which to to proxy traffic") |
|
|
fs.Bool("change-host-header", false, "Set upstream Host header to address of upstream") |
|
|
fs.Bool("change-host-header", false, "Set upstream Host header to address of upstream") |
|
|
fs.Bool("insecure", false, "Disable TLS verification (WARNING: DISABLES SECURITY, WHY ARE YOU EVEN USING TLS?)") |
|
|
fs.Bool("insecure", false, "Disable TLS verification (WARNING: DISABLES SECURITY BY NOT VERIFYING SSL CERTIFICATES!)") |
|
|
return fs |
|
|
return fs |
|
|
}(), |
|
|
}(), |
|
|
}) |
|
|
}) |
|
|