diff options
author | Christian Parpart <trapni@gentoo.org> | 2005-02-04 18:15:42 +0000 |
---|---|---|
committer | Christian Parpart <trapni@gentoo.org> | 2005-02-04 18:15:42 +0000 |
commit | 12759fb99bc20c8783afc81e17ada6df7c721ca0 (patch) | |
tree | 1ddbf9340de1a8900609ea45ff7263ab39f2390e /www-apache/mod_dav_svn/files | |
parent | mod_dav_svn-1.1.3-r1 masked for testing (diff) | |
download | gentoo-2-12759fb99bc20c8783afc81e17ada6df7c721ca0.tar.gz gentoo-2-12759fb99bc20c8783afc81e17ada6df7c721ca0.tar.bz2 gentoo-2-12759fb99bc20c8783afc81e17ada6df7c721ca0.zip |
added an SVNParentPath and authz example to config file; also added AUTHZ_SVN define for mod_authz_svn.c module loading
(Portage version: 2.0.51-r15)
Diffstat (limited to 'www-apache/mod_dav_svn/files')
-rw-r--r-- | www-apache/mod_dav_svn/files/1.1.3-r1/47_mod_dav_svn.conf | 92 | ||||
-rw-r--r-- | www-apache/mod_dav_svn/files/digest-mod_dav_svn-1.1.3-r1 | 1 |
2 files changed, 93 insertions, 0 deletions
diff --git a/www-apache/mod_dav_svn/files/1.1.3-r1/47_mod_dav_svn.conf b/www-apache/mod_dav_svn/files/1.1.3-r1/47_mod_dav_svn.conf new file mode 100644 index 000000000000..67d708dac625 --- /dev/null +++ b/www-apache/mod_dav_svn/files/1.1.3-r1/47_mod_dav_svn.conf @@ -0,0 +1,92 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_dav_svn/files/1.1.3-r1/47_mod_dav_svn.conf,v 1.1 2005/02/04 18:15:42 trapni Exp $ + +<IfDefine SVN> + <IfModule !mod_dav_svn.c> + LoadModule dav_svn_module modules/mod_dav_svn.so + </IfModule> +</IfDefine> + +<IfDefine AUTHZ_SVN> + <IfModule !mod_authz_svn.c> + LoadModule authz_svn_module modules/mod_authz_svn.so + </IfModule> +</IfDefine> + +### EXAMPLE 1: subversion repository access +### +### (anonymous read-only; authorized write against htpasswd2 accounts) +# +# <Location /svn/REPOS_NAME> +# DAV svn +# SVNPath @SVN_REPOS_LOC@/REPOS_NAME +# +# AuthType Basic +# AuthName "Subversion repository" +# AuthUserFile @SVN_REPOS_LOC@/conf/svnusers +# +# # only require valid authentification on write access +# <LimitExcept GET PROPFIND OPTIONS REPORT> +# Require valid-user +# </LimitExcept> +# </Location> + +### EXAMPLE 2: subversion repository access +### +### (anonymous read-only; authorized write against PAM accounds) +### +### Any PAM user that is in group `svn` may write to this repository. +### Please NOTE, that if you want this setup, you may also need to +### emerge mod_auth_pam. +# +# <Location /svn/REPOS_NAME> +# DAV svn +# SVNPath @SVN_REPOS_LOC@/REPOS_NAME +# +# <IfModule mod_auth_sys_group.c> +# AuthPAM_Enabled on +# +# AuthType Basic +# AuthName "authorized contribution area" +# +# # only require valid authentification on write access +# <LimitExcept GET PROPFIND OPTIONS REPORT> +# Require group svn +# </LimitExcept> +# </IfModule> +# </Location> + +### EXAMPLE 3: subversion multi-repository configuration example +### with optional authz support +### +# <Location /svn> +# DAV svn +# SVNParentPath @SVN_REPOS_LOC@ +# +# <IfDefine AUTHZ_SVN> +# AuthType Basic +# AuthName "Subversion repository" +# AuthUserFile @SVN_REPOS_LOC@/conf.d/users +# Require valid-user +# +# AuthzSVNAccessFile @SVN_REPOS_LOC@/conf.d/access +# Satisfy Any +# </IfDefine> +# <IfDefine !AUTHZ_SVN> +# <LimitExcept GET PROPFIND OPTIONS REPORT> +# Deny from all +# </LimitExcept> +# </IfDefine> +# </Location> + +### NOTE 1: In case we have emerged mod_umask *and* you want multi-protocol +### access to our repository (REPOS_NAME) than you need to override +### default umask as well. +### See documentation at homepage from ebuild info for more details. +# +# <IfModule mod_umask.c> +# UMask 002 +# </IfModule> + +# vim:syntax=apache diff --git a/www-apache/mod_dav_svn/files/digest-mod_dav_svn-1.1.3-r1 b/www-apache/mod_dav_svn/files/digest-mod_dav_svn-1.1.3-r1 new file mode 100644 index 000000000000..d3c44630ae56 --- /dev/null +++ b/www-apache/mod_dav_svn/files/digest-mod_dav_svn-1.1.3-r1 @@ -0,0 +1 @@ +MD5 a09c2b2fa1a09566c024547954a48478 subversion-1.1.3.tar.bz2 6793419 |