Add an EXAMPLES section.

PR:		43899
Reviewed by:	des, ru
This commit is contained in:
Tom Rhodes 2003-06-10 20:41:18 +00:00
parent fa676bbfc8
commit 0315901c7c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116169

View File

@ -532,6 +532,28 @@ See
for a description of the file format.
This feature is experimental.
.El
.Sh EXAMPLES
To access a proxy server on
.Pa proxy.example.com
port 8080, set the
.Ev HTTP_PROXY
environment variable in a manner similar to this:
.Pp
.Dl HTTP_PROXY=http://proxy.example.com:8080
.Pp
If the proxy server requires authentication, there are
two options available for passing the authentication data.
The first method is by using the proxy URL:
.Pp
.Dl HTTP_PROXY=http://<user>:<pwd>@proxy.example.com:8080
.Pp
The second method is by using the
.Ev HTTP_PROXY_AUTH
environment variable:
.Bd -literal -offset indent
HTTP_PROXY=http://proxy.example.com:8080
HTTP_PROXY_AUTH=basic:*:<user>:<pwd>
.Ed
.Sh SEE ALSO
.Xr fetch 1 ,
.Xr ftpio 3 ,