### This file controls the configuration of the svnserve daemon, ifyou
### use it to allow access to thisrepository. (If you only allow
### access through http: and/or file: URLs, then thisfile is
### irrelevant.)
### Visit http:
[general]
### These options control access to the repository forunauthenticated
### and authenticated users. Valid values are "write", "read",
### and "none". The sample settings below are the defaults.
anon-access = none # 注意这里必须设置,否则所有用户不用密码就可以访问
auth-access = write
### The password-db option controls the location of the password
### database file. Unless you specify a path starting with a /,
### the file's location is relative to the directory containing
### thisconfiguration file.
### If SASL is enabled (see below), thisfile will NOT be used.
### Uncomment the line below to use the defaultpassword file.
password-db = passwd
### The authz-db option controls the location of the authorization
### rules forpath-based access control. Unless you specify a path
### starting with a /, the file's location is relative to the the
### directory containing thisfile. If you don't specify an
### authz-db, no path-based access control is done.
### Uncomment the line below to use the defaultauthorization file.
authz-db = authz
### This option specifies the authentication realm of the repository.
### If two repositories have the same authentication realm, they should
### have the same password database, and vice versa. The defaultrealm
### is repository's uuid.
realm = tshop
[sasl]
### This option specifies whether you want to use the Cyrus SASL
### library forauthentication. Default is false.
### This section will be ignored ifsvnserve is not built with Cyrus
### SASL support; to check, run 'svnserve --version'and look fora line
### reading 'Cyrus SASL authentication is available.'
# use-sasl = true
### These options specify the desired strength of the security layer
### that you want SASL to provide. 0means no encryption, 1means
### integrity-checking only, values larger than 1are correlated
### to the effective key length forencryption (e.g. 128means 128-bit
### encryption). The values below are the defaults.
# min-encryption = 0
# max-encryption = 256