blob: 1d3bddb79e5be15f2641aefa73f835a89dae3f49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
=head1 NAME
proxy.cfg - urpmi proxy configuration file format.
=head1 DESCRIPTION
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:
[protocol://]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 <rgarciasuarez@mandriva.com>,
Pascal Rigaux <pixel@mandriva.com> (current maintainer)
=head1 SEE ALSO
urpmi(8), urpmi.cfg(5), urpmi.files(5).
|