[18] | 1 | ### This file controls the configuration of the svnserve daemon, if you |
---|
| 2 | ### use it to allow access to this repository. (If you only allow |
---|
| 3 | ### access through http: and/or file: URLs, then this file is |
---|
| 4 | ### irrelevant.) |
---|
| 5 | |
---|
| 6 | ### Visit http://subversion.apache.org/ for more information. |
---|
| 7 | |
---|
| 8 | [general] |
---|
| 9 | ### The anon-access and auth-access options control access to the |
---|
| 10 | ### repository for unauthenticated (a.k.a. anonymous) users and |
---|
| 11 | ### authenticated users, respectively. |
---|
| 12 | ### Valid values are "write", "read", and "none". |
---|
| 13 | ### Setting the value to "none" prohibits both reading and writing; |
---|
| 14 | ### "read" allows read-only access, and "write" allows complete |
---|
| 15 | ### read/write access to the repository. |
---|
| 16 | ### The sample settings below are the defaults and specify that anonymous |
---|
| 17 | ### users have read-only access to the repository, while authenticated |
---|
| 18 | ### users have read and write access to the repository. |
---|
| 19 | # anon-access = read |
---|
| 20 | # auth-access = write |
---|
| 21 | ### The password-db option controls the location of the password |
---|
| 22 | ### database file. Unless you specify a path starting with a /, |
---|
| 23 | ### the file's location is relative to the directory containing |
---|
| 24 | ### this configuration file. |
---|
| 25 | ### If SASL is enabled (see below), this file will NOT be used. |
---|
| 26 | ### Uncomment the line below to use the default password file. |
---|
| 27 | # password-db = passwd |
---|
| 28 | ### The authz-db option controls the location of the authorization |
---|
| 29 | ### rules for path-based access control. Unless you specify a path |
---|
| 30 | ### starting with a /, the file's location is relative to the |
---|
| 31 | ### directory containing this file. The specified path may be a |
---|
| 32 | ### repository relative URL (^/) or an absolute file:// URL to a text |
---|
| 33 | ### file in a Subversion repository. If you don't specify an authz-db, |
---|
| 34 | ### no path-based access control is done. |
---|
| 35 | ### Uncomment the line below to use the default authorization file. |
---|
| 36 | # authz-db = authz |
---|
| 37 | ### The groups-db option controls the location of the file with the |
---|
| 38 | ### group definitions and allows maintaining groups separately from the |
---|
| 39 | ### authorization rules. The groups-db file is of the same format as the |
---|
| 40 | ### authz-db file and should contain a single [groups] section with the |
---|
| 41 | ### group definitions. If the option is enabled, the authz-db file cannot |
---|
| 42 | ### contain a [groups] section. Unless you specify a path starting with |
---|
| 43 | ### a /, the file's location is relative to the directory containing this |
---|
| 44 | ### file. The specified path may be a repository relative URL (^/) or an |
---|
| 45 | ### absolute file:// URL to a text file in a Subversion repository. |
---|
| 46 | ### This option is not being used by default. |
---|
| 47 | # groups-db = groups |
---|
| 48 | ### This option specifies the authentication realm of the repository. |
---|
| 49 | ### If two repositories have the same authentication realm, they should |
---|
| 50 | ### have the same password database, and vice versa. The default realm |
---|
| 51 | ### is repository's uuid. |
---|
| 52 | # realm = My First Repository |
---|
| 53 | ### The force-username-case option causes svnserve to case-normalize |
---|
| 54 | ### usernames before comparing them against the authorization rules in the |
---|
| 55 | ### authz-db file configured above. Valid values are "upper" (to upper- |
---|
| 56 | ### case the usernames), "lower" (to lowercase the usernames), and |
---|
| 57 | ### "none" (to compare usernames as-is without case conversion, which |
---|
| 58 | ### is the default behavior). |
---|
| 59 | # force-username-case = none |
---|
| 60 | ### The hooks-env options specifies a path to the hook script environment |
---|
| 61 | ### configuration file. This option overrides the per-repository default |
---|
| 62 | ### and can be used to configure the hook script environment for multiple |
---|
| 63 | ### repositories in a single file, if an absolute path is specified. |
---|
| 64 | ### Unless you specify an absolute path, the file's location is relative |
---|
| 65 | ### to the directory containing this file. |
---|
| 66 | # hooks-env = hooks-env |
---|
| 67 | |
---|
| 68 | [sasl] |
---|
| 69 | ### This option specifies whether you want to use the Cyrus SASL |
---|
| 70 | ### library for authentication. Default is false. |
---|
| 71 | ### Enabling this option requires svnserve to have been built with Cyrus |
---|
| 72 | ### SASL support; to check, run 'svnserve --version' and look for a line |
---|
| 73 | ### reading 'Cyrus SASL authentication is available.' |
---|
| 74 | # use-sasl = true |
---|
| 75 | ### These options specify the desired strength of the security layer |
---|
| 76 | ### that you want SASL to provide. 0 means no encryption, 1 means |
---|
| 77 | ### integrity-checking only, values larger than 1 are correlated |
---|
| 78 | ### to the effective key length for encryption (e.g. 128 means 128-bit |
---|
| 79 | ### encryption). The values below are the defaults. |
---|
| 80 | # min-encryption = 0 |
---|
| 81 | # max-encryption = 256 |
---|