WoWInterface SVN Blessed

[/] [conf/] [svnserve.conf] - Blame information for rev 3

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 3 Ailae-78500
### This file controls the configuration of the svnserve daemon, if you
2 Ailae-78500
### use it to allow access to this repository.  (If you only allow
3 Ailae-78500
### access through http: and/or file: URLs, then this file is
4 Ailae-78500
### irrelevant.)
5 Ailae-78500
 
6 Ailae-78500
### Visit http://subversion.tigris.org/ for more information.
7 Ailae-78500
 
8 Ailae-78500
[general]
9 Ailae-78500
### These options control access to the repository for unauthenticated
10 Ailae-78500
### and authenticated users.  Valid values are "write", "read",
11 Ailae-78500
### and "none".  The sample settings below are the defaults.
12 Ailae-78500
# anon-access = read
13 Ailae-78500
# auth-access = write
14 Ailae-78500
### The password-db option controls the location of the password
15 Ailae-78500
### database file.  Unless you specify a path starting with a /,
16 Ailae-78500
### the file's location is relative to the directory containing
17 Ailae-78500
### this configuration file.
18 Ailae-78500
### If SASL is enabled (see below), this file will NOT be used.
19 Ailae-78500
### Uncomment the line below to use the default password file.
20 Ailae-78500
# password-db = passwd
21 Ailae-78500
### The authz-db option controls the location of the authorization
22 Ailae-78500
### rules for path-based access control.  Unless you specify a path
23 Ailae-78500
### starting with a /, the file's location is relative to the the
24 Ailae-78500
### directory containing this file.  If you don't specify an
25 Ailae-78500
### authz-db, no path-based access control is done.
26 Ailae-78500
### Uncomment the line below to use the default authorization file.
27 Ailae-78500
# authz-db = authz
28 Ailae-78500
### This option specifies the authentication realm of the repository.
29 Ailae-78500
### If two repositories have the same authentication realm, they should
30 Ailae-78500
### have the same password database, and vice versa.  The default realm
31 Ailae-78500
### is repository's uuid.
32 Ailae-78500
# realm = My First Repository
33 Ailae-78500
 
34 Ailae-78500
[sasl]
35 Ailae-78500
### This option specifies whether you want to use the Cyrus SASL
36 Ailae-78500
### library for authentication. Default is false.
37 Ailae-78500
### This section will be ignored if svnserve is not built with Cyrus
38 Ailae-78500
### SASL support; to check, run 'svnserve --version' and look for a line
39 Ailae-78500
### reading 'Cyrus SASL authentication is available.'
40 Ailae-78500
# use-sasl = true
41 Ailae-78500
### These options specify the desired strength of the security layer
42 Ailae-78500
### that you want SASL to provide. 0 means no encryption, 1 means
43 Ailae-78500
### integrity-checking only, values larger than 1 are correlated
44 Ailae-78500
### to the effective key length for encryption (e.g. 128 means 128-bit
45 Ailae-78500
### encryption). The values below are the defaults.
46 Ailae-78500
# min-encryption = 0
47 Ailae-78500
# max-encryption = 256