2007-01-15 23:38:11 +00:00
|
|
|
## Path: Network/Subversion/svnserve
|
|
|
|
## Description: Basic configuration for svnserve
|
|
|
|
|
|
|
|
## Type: string
|
|
|
|
## Default "-d -R -r /srv/svn/repos"
|
|
|
|
#
|
2011-01-31 20:22:26 +00:00
|
|
|
# Default options for the svnserve process.
|
|
|
|
# The -R option enforces read-only access, i.e. write operations to the
|
|
|
|
# repository (such as commits) will not be allowed.
|
|
|
|
# Authentication should be configured before allowing write access.
|
2013-06-18 12:36:30 +00:00
|
|
|
# See http://svnbook.red-bean.com/en/1.8/svn.serverconfig.svnserve.html#svn.serverconfig.svnserve.auth
|
2007-01-15 23:38:11 +00:00
|
|
|
#
|
|
|
|
SVNSERVE_OPTIONS="-d -R -r /srv/svn/repos"
|
|
|
|
|
|
|
|
## Type: string
|
|
|
|
## Default "svn"
|
|
|
|
#
|
2011-01-31 20:22:26 +00:00
|
|
|
# svnserve should run as unprivileged user.
|
2013-05-20 21:00:10 +00:00
|
|
|
# If you want to expose the repository via both svnserve and mod_dav_svn
|
|
|
|
# (Apache httpd) in parallel, ensure that the apache user is part of the
|
|
|
|
# svn group and the setgid flag is set on the repositories
|
|
|
|
# usermod -A svn wwwrun
|
|
|
|
# chmod -R g+s /srv/svn/repos
|
2013-06-18 12:36:30 +00:00
|
|
|
# See http://svnbook.red-bean.com/en/1.8/svn.serverconfig.multimethod.html
|
2007-01-15 23:38:11 +00:00
|
|
|
#
|
|
|
|
SVNSERVE_USERID="svn"
|
|
|
|
|
|
|
|
## Type: string
|
|
|
|
## Default "svn"
|
|
|
|
#
|
2011-01-31 20:22:26 +00:00
|
|
|
# svnserve should run as unprivileged user.
|
2013-05-20 21:00:10 +00:00
|
|
|
# If you want to expose the repository via both svnserve and mod_dav_svn
|
|
|
|
# (Apache httpd) in parallel, ensure that the apache user is part of the
|
|
|
|
# svn group and the setgid flag is set on the repositories
|
|
|
|
# usermod -A svn wwwrun
|
|
|
|
# chmod -R g+s /srv/svn/repos
|
2013-06-18 12:36:30 +00:00
|
|
|
# See http://svnbook.red-bean.com/en/1.8/svn.serverconfig.multimethod.html
|
2007-01-15 23:38:11 +00:00
|
|
|
#
|
|
|
|
SVNSERVE_GROUPID="svn"
|