diff options
author | Simão Gomes Viana <devel@superboring.dev> | 2021-10-12 00:15:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 16:15:00 -0600 |
commit | 837cdc566d609eae8f5f6b7207c4642768dfa4de (patch) | |
tree | 2415f3dcb0f26cdfe5d973923c6689a2e16492a3 /modules | |
parent | be5f77e84da941d32eb1b873d355bfc1a186304b (diff) |
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.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/caddyhttp/reverseproxy/command.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddyhttp/reverseproxy/command.go b/modules/caddyhttp/reverseproxy/command.go index 4a6739e..24d38c3 100644 --- a/modules/caddyhttp/reverseproxy/command.go +++ b/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("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("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 }(), }) |