mirror of
https://github.com/curl/curl.git
synced 2026-07-28 01:43:10 +03:00
cmdline-opts: shorter help texts
In an effort to increase the readability of the "--help all" output on narrow (80 column) terminals. Co-authored-by: Jay Satiro Closes #13169
This commit is contained in:
parent
647e86a3ef
commit
fe9f68fa61
70 changed files with 215 additions and 170 deletions
|
|
@ -2,7 +2,7 @@
|
|||
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
SPDX-License-Identifier: curl
|
||||
Long: proxy-insecure
|
||||
Help: Do HTTPS proxy connections without verifying the proxy
|
||||
Help: Skip HTTPS proxy cert verification
|
||||
Added: 7.52.0
|
||||
Category: proxy tls
|
||||
Multi: boolean
|
||||
|
|
@ -16,3 +16,15 @@ Example:
|
|||
# `--proxy-insecure`
|
||||
|
||||
Same as --insecure but used in HTTPS proxy context.
|
||||
|
||||
Every secure connection curl makes is verified to be secure before the
|
||||
transfer takes place. This option makes curl skip the verification step with a
|
||||
proxy and proceed without checking.
|
||||
|
||||
When this option is not used for a proxy using HTTPS, curl verifies the
|
||||
proxy's TLS certificate before it continues: that the certificate contains the
|
||||
right name which matches the hostname and that the certificate has been signed
|
||||
by a CA certificate present in the cert store. See this online resource for
|
||||
further details: **https://curl.se/docs/sslcerts.html**
|
||||
|
||||
**WARNING**: using this option makes the transfer to the proxy insecure.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue