~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/en/authentication.txt

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-12-20 16:16:34 UTC
  • mfrom: (3123.5.18 hardlinks)
  • Revision ID: pqm@pqm.ubuntu.com-20071220161634-2kcjb650o21ydko4
Accelerate build_tree using similar workingtrees (abentley)

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
------
7
7
 
8
8
Many different authentication policies can be described in the
9
 
``authentication.conf`` file but a particular user should need only a few
10
 
definitions to cover his needs without having to specify a user and a password
11
 
for every branch he uses.
 
9
``authentication.conf`` file but a particular user should need
 
10
only a few definitions to cover his needs without having to specify a user and
 
11
a password for every branch he uses.
12
12
 
13
13
The definitions found in this file are used to find the credentials to use for
14
14
a given url. The same credentials can generally be used for as many branches as
47
47
 
48
48
1. user and password
49
49
 
50
 
``FTP`` needs a (``user``, ``password``) to authenticate against a ``host``
51
 
``SFTP`` can use either a password or a host key to authenticate. However,
52
 
ssh agents are a better, more secure solution. So we have chosen to not provide
53
 
our own less secure method.
 
50
``FTP`` and ``SFTP`` needs a (``user``, ``password``) to authenticate against a
 
51
``host`` (SFTP can use ssh keys too, but we don't talk about that here as ssh
 
52
agents provide a better solution).
54
53
 
55
54
2. user, realm and password
56
55
 
175
174
        # The leading '.' ensures that 'shp.net' alone doesn't match
176
175
        host=.shp.net
177
176
        user=joe
178
 
        # bzr don't support supplying a password for sftp,
179
 
        # consider using an ssh agent if you don't want to supply
180
 
        # a password interactively. (pageant, ssh-agent, etc)
 
177
        password=precious
181
178
 
182
179
HTTPS, SFTP servers and their proxy
183
180
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
184
181
 
185
 
At company.com, the server hosting release and integration branches is behind a
186
 
proxy, and the two branches use different authentication policies::
 
182
At company.com, the server hosting released and integration code is behind a
 
183
proxy, the two servers use different authentication policies::
187
184
 
188
185
        [reference code]
189
186
        scheme=https
198
195
        host=dev.company.com
199
196
        path=/dev/integration
200
197
        user=user2
 
198
        password=pass2
201
199
        
202
200
        # proxy
203
201
        [proxy]