~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/admin-guide/other-setups.txt

  • Committer: Vincent Ladeuil
  • Date: 2017-01-17 13:48:10 UTC
  • mfrom: (6615.3.6 merges)
  • mto: This revision was merged to the branch mainline in revision 6620.
  • Revision ID: v.ladeuil+lp@free.fr-20170117134810-j9p3lidfy6pfyfsc
Merge 2.7, resolving conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
Bazaar can also serve branches over protocols that know nothing about Bazaar's
8
8
specific needs.  These are called "dumb servers" to distinguish them from
9
 
Bazaar's native protocol.  Currently HTTP, FTP, SFTP and HTTP+WebDAV can be
10
 
used to read branches remotely.  FTP, SFTP and HTTP+WebDAV can be used for
 
9
Bazaar's native protocol.  Currently HTTP, HTTPS, FTP, SFTP and HTTP+WebDAV can
 
10
be used to read branches remotely.  FTP, SFTP and HTTP+WebDAV can be used for
11
11
writing as well.  To use any of these protocols, it is just necessary to
12
12
provide access to the server's filesystem under ``/srv/bzr``.
13
13
 
33
33
Smart server over HTTP(S)
34
34
-------------------------
35
35
 
36
 
Bazaar can use its native protocol with HTTP requests.  Since HTTP is a network
37
 
protocol that is available on many networks, this can be a good option where
38
 
SSH access is not possible.  Another benefit of this setup is that all of the
39
 
authentication and access control methods available to the HTTP server (basic,
40
 
LDAP, ActiveDirectory, etc.) are then available to control access to Bazaar
41
 
branches.  More information about setting up this type of access using Apache
42
 
and FastCGI or mod_python or WSGI is in the `smart server section of the User's
43
 
Guide <../user-guide/http_smart_server.html>`_.
 
36
Bazaar can use its native protocol with HTTP or HTTPS requests.  Since HTTP is
 
37
a network protocol that is available on many networks, this can be a good
 
38
option where SSH access is not possible.  Another benefit of this setup is that
 
39
all of the authentication and access control methods available to the HTTP
 
40
server (basic, LDAP, ActiveDirectory, etc.) are then available to control
 
41
access to Bazaar branches.  More information about setting up this type of
 
42
access using Apache and FastCGI or mod_python or WSGI is in the `smart server
 
43
section of the User's Guide <../user-guide/http_smart_server.html>`_.
44
44
 
45
45
Direct Smart Server Access
46
46
--------------------------