2022-06-14 06:12:03 +08:00
|
|
|
c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
SPDX-License-Identifier: curl
|
2016-11-28 08:01:13 +08:00
|
|
|
Long: proxy
|
|
|
|
Short: x
|
|
|
|
Arg: [protocol://]host[:port]
|
|
|
|
Help: Use this proxy
|
2020-07-13 20:15:04 +08:00
|
|
|
Category: proxy
|
2021-08-31 22:37:14 +08:00
|
|
|
Example: --proxy http://proxy.example $URL
|
2021-09-28 17:50:07 +08:00
|
|
|
Added: 4.0
|
2021-11-15 22:58:20 +08:00
|
|
|
See-also: socks5 proxy-basic
|
2022-10-18 16:39:43 +08:00
|
|
|
Multi: single
|
2016-11-28 08:01:13 +08:00
|
|
|
---
|
|
|
|
Use the specified proxy.
|
|
|
|
|
2017-02-06 16:13:42 +08:00
|
|
|
The proxy string can be specified with a protocol:// prefix. No protocol
|
|
|
|
specified or http:// will be treated as HTTP proxy. Use socks4://, socks4a://,
|
|
|
|
socks5:// or socks5h:// to request a specific SOCKS version to be used.
|
2021-09-28 16:30:59 +08:00
|
|
|
(Added in 7.21.7)
|
2017-02-06 16:13:42 +08:00
|
|
|
|
2022-05-19 21:33:22 +08:00
|
|
|
Unix domain sockets are supported for socks proxy. Set localhost for the host
|
|
|
|
part. e.g. socks5h://localhost/path/to/socket.sock
|
|
|
|
|
2017-02-06 16:13:42 +08:00
|
|
|
HTTPS proxy support via https:// protocol prefix was added in 7.52.0 for
|
|
|
|
OpenSSL, GnuTLS and NSS.
|
|
|
|
|
|
|
|
Unrecognized and unsupported proxy protocols cause an error since 7.52.0.
|
|
|
|
Prior versions may ignore the protocol and use http:// instead.
|
2016-11-28 08:01:13 +08:00
|
|
|
|
|
|
|
If the port number is not specified in the proxy string, it is assumed to be
|
|
|
|
1080.
|
|
|
|
|
|
|
|
This option overrides existing environment variables that set the proxy to
|
|
|
|
use. If there's an environment variable setting a proxy, you can set proxy to
|
2022-08-23 19:42:49 +08:00
|
|
|
"" to override it.
|
2016-11-28 08:01:13 +08:00
|
|
|
|
|
|
|
All operations that are performed over an HTTP proxy will transparently be
|
|
|
|
converted to HTTP. It means that certain protocol specific operations might
|
|
|
|
not be available. This is not the case if you can tunnel through the proxy, as
|
|
|
|
one with the --proxytunnel option.
|
|
|
|
|
|
|
|
User and password that might be provided in the proxy string are URL decoded
|
|
|
|
by curl. This allows you to pass in special characters such as @ by using %40
|
|
|
|
or pass in a colon with %3a.
|
|
|
|
|
2021-11-26 15:46:59 +08:00
|
|
|
The proxy host can be specified the same way as the proxy environment
|
2016-11-28 08:01:13 +08:00
|
|
|
variables, including the protocol prefix (http://) and the embedded user +
|
|
|
|
password.
|