~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to debian/dav_svn.conf

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2005-06-29 13:09:32 UTC
  • mfrom: (1.1.1 upstream) (0.1.2 sarge)
  • Revision ID: james.westby@ubuntu.com-20050629130932-vzt4595e7q8wtfqy
Tags: 1.2.0-1ubuntu1
Resynchronise with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# dav_svn.conf - Example Subversion/Apache configuration
2
2
#
3
 
# For details and further options see the Apache user manual.
 
3
# For details and further options see the Apache user manual and
 
4
# the Subversion book.
4
5
 
5
6
# <Location URL> ... </Location>
6
7
# URL controls how the repository appears to the outside world.
7
 
# In this example clients access the repository as http://hostname/svn/repos
 
8
# In this example clients access the repository as http://hostname/svn/
8
9
<Location /svn>
9
10
 
10
 
  # uncomment this to enable the repository
 
11
  # Uncomment this to enable the repository,
11
12
  # DAV svn
12
13
 
13
 
  # set this to the path to your repository
 
14
  # Set this to the path to your repository
14
15
  # SVNPath /var/lib/svn
15
16
 
16
17
  # The following allows for basic http authentication.  Basic authentication
33
34
  # Uncomment the following line to enable Authz Authentication
34
35
  # AuthzSVNAccessFile /etc/apache2/dav_svn.authz
35
36
 
36
 
  # Uncomment the following three lines allow anonymous read, but make
37
 
  # committers authenticate themselves
 
37
  # The following three lines allow anonymous read, but make
 
38
  # committers authenticate themselves.
38
39
 
39
 
  # <LimitExcept GET PROPFIND OPTIONS REPORT>
40
 
  #  Require valid-user
41
 
  # </LimitExcept> 
 
40
  <LimitExcept GET PROPFIND OPTIONS REPORT>
 
41
    Require valid-user
 
42
  </LimitExcept> 
42
43
 
43
44
</Location>