diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-06-08 18:56:44 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-06-08 18:56:44 +0000 |
commit | 5c9233d5397d0ed370909b719c0f52365098b758 (patch) | |
tree | 4cf604c20832230f53eb4684fb59e0a4756df7e9 /pod/5/proxy.cfg.pod | |
parent | 091aaacde979eab5b08a3f2ef37e08ee5c585aa8 (diff) | |
download | urpmi-5c9233d5397d0ed370909b719c0f52365098b758.tar urpmi-5c9233d5397d0ed370909b719c0f52365098b758.tar.gz urpmi-5c9233d5397d0ed370909b719c0f52365098b758.tar.bz2 urpmi-5c9233d5397d0ed370909b719c0f52365098b758.tar.xz urpmi-5c9233d5397d0ed370909b719c0f52365098b758.zip |
actually rename
Diffstat (limited to 'pod/5/proxy.cfg.pod')
-rw-r--r-- | pod/5/proxy.cfg.pod | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/pod/5/proxy.cfg.pod b/pod/5/proxy.cfg.pod new file mode 100644 index 00000000..edeabcfe --- /dev/null +++ b/pod/5/proxy.cfg.pod @@ -0,0 +1,44 @@ +=head1 NAME + +proxy.cfg - urpmi proxy configuration file format. + +=head1 DESCRIPTION + +You can override default proxy using proxy.cfg (see the syntax below). You can +also set proxy on urpmi commands command-line using C<--proxy>. + +Note that urpmi will use system global proxy settings (cf environment variable +C<http_proxy> or C<ftp_proxy>). If you don't want urpmi to use any proxy, you +can use C<http_proxy=> or C<ftp_proxy=>. + +=head1 SYNTAX +The proxy.cfg file contains lines of the form + + [media:]http_proxy=[value] + [media:]ftp_proxy=[value] + [media:]proxy_user=[value] + +where the media part is optional (in this case, the line applies to all +media). ftp_proxy and http_proxy values have the same syntax as the usual +environment variables used by many programs such as curl(1): + + [protocol://]<host>[:port] + +C<proxy_user> values are simply a user name, or a user name and a password +separated by a colon (C<:>). + +Alternatively, instead of C<proxy_user>, you can write: + + [media:]proxy_user_ask + +In this case, urpmi and other tools will prompt for proxy credentials +(like with the urpmi command-line option B<--proxy-user=ask>). + +=head1 AUTHOR + +FranE<ccedil>ois Pons, Rafael Garcia-Suarez , +Pascal Rigaux <pixel@mandriva.com> (current maintainer) + +=head1 SEE ALSO + +urpmi(8), urpmi.cfg(5), urpmi.files(5). |