Commit 5c4a5263 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

cmdline-opts: more command line options documented

Moved over to the new format
parent 720ea577
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
Long: disable
Short: q
Help: Disable .curlrc
---
If used as the first parameter on the command line, the \fIcurlrc\fP config
file will not be read and used. See the --config for details on the default
config file search path.
+7 −0
Original line number Diff line number Diff line
Long: proxy-anyauth
Help: Pick any proxy authentication method
Added: 7.13.2
See-also: proxy proxy-basic proxy-digest
---
Tells curl to pick a suitable authentication method when communicating with
the given HTTP proxy. This might cause an extra request/response round-trip.
+7 −0
Original line number Diff line number Diff line
Long: proxy-basic
Help: Use Basic authentication on the proxy
See-also: proxy proxy-anyauth proxy-digest
---
Tells curl to use HTTP Basic authentication when communicating with the given
proxy. Use --basic for enabling HTTP Basic with a remote host. Basic is the
default authentication method curl uses with proxies.
+7 −0
Original line number Diff line number Diff line
Long: proxy-cacert
Help: CA certificate to verify peer against for proxy
Arg: <file>
Added: 7.52.0
See-also: proxy-capath cacert capath proxy
---
Same as --cacert but used in HTTPS proxy context.
+7 −0
Original line number Diff line number Diff line
Long: proxy-capath
Help: CA directory to verify peer against for proxy
Arg: <dir>
Added: 7.52.0
See-also: proxy-cacert proxy capath
---
Same as --capath but used in HTTPS proxy context.
Loading