~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/user-guide/configuring_bazaar.txt

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-11 04:02:41 UTC
  • mfrom: (5017.2.2 tariff)
  • Revision ID: pqm@pqm.ubuntu.com-20100211040241-w6n021dz0uus341n
(mbp) add import-tariff tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
If ``whoami`` is used without an argument, the current value is displayed.
18
18
 
19
 
Using a network proxy
20
 
---------------------
21
 
 
22
 
If your network requires that you use an http proxy for outbound
23
 
connections, you must set the ``http_proxy`` variable.  If the proxy is
24
 
also required for https connections, you need to set ``https_proxy`` too.
25
 
If you need these and don't have them set, you may find that connections
26
 
to Launchpad or other external servers fail or time out.
27
 
 
28
 
On Unix you typically want to set these in ``/etc/environment`` or
29
 
``~/.bash_profile`` and on Windows in the user profile.
30
 
 
31
 
::
32
 
 
33
 
  http_proxy=http://proxy.example.com:3128/
34
 
  https_proxy=http://proxy.example.com:3128/
35
 
 
36
 
The ``no_proxy`` variable can be set to a comma-separated list of hosts
37
 
which shouldn't be reached by the proxy.  (See
38
 
<http://docs.python.org/library/urllib.html> for more details.)
39
 
 
40
 
 
41
19
Configuration files
42
20
-------------------
43
21
 
44
 
Configuration files are located in ``$HOME/.bazaar`` on Unix and
 
22
Configuration files are located in ``$HOME/.bazaar`` on Linux/Unix and
45
23
``C:\Documents and Settings\<username>\Application Data\Bazaar\2.0`` on
46
24
Windows. There are three primary configuration files in this location:
47
25