- update subversion.conf examples to be SELinux-friendly

This commit is contained in:
jorton 2004-11-24 09:42:14 +00:00
parent bfa41a780c
commit 33ea74e6bb
2 changed files with 23 additions and 7 deletions

View File

@ -3,14 +3,27 @@ LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so
# #
# Example configuration to enable HTTP access for a Subversion # Example configuration to enable HTTP access for a directory
# repository, "/home/svnroot". This repository must be readable # containing Subversion repositories, "/var/www/svn". Each repository
# and writable by the 'apache' user. # must be readable and writable by the 'apache' user. Note that if
# SELinux is enabled, the repositories must be labelled with a context
# which httpd can write to; this will happen by default for
# directories created in /var/www. Use "restorecon -R /var/www/svn"
# to label the repositories if upgrading from a previous release.
# #
#<Location /svn/repos> #
# To create a new repository using this scheme, say,
# http://localhost/repos/stuff, run as root:
#
# # cd /var/www/svn
# # svnadmin create stuff
# # chown -R apache.apache stuff
#
#<Location /repos>
# DAV svn # DAV svn
# SVNPath /home/svnroot # SVNParentPath /var/www/svn
# #
# # Limit write permission to list of valid users. # # Limit write permission to list of valid users.
# <LimitExcept GET PROPFIND OPTIONS REPORT> # <LimitExcept GET PROPFIND OPTIONS REPORT>

View File

@ -6,7 +6,7 @@
Summary: Modern Version Control System designed to replace CVS Summary: Modern Version Control System designed to replace CVS
Name: subversion Name: subversion
Version: 1.1.1 Version: 1.1.1
Release: 4 Release: 5
License: BSD License: BSD
Group: Development/Tools Group: Development/Tools
URL: http://subversion.tigris.org/ URL: http://subversion.tigris.org/
@ -196,6 +196,9 @@ rm -rf ${RPM_BUILD_ROOT}
%{_mandir}/man*/*::* %{_mandir}/man*/*::*
%changelog %changelog
* Wed Nov 24 2004 Joe Orton <jorton@redhat.com> 1.1.1-5
- update subversion.conf examples to be SELinux-friendly
* Thu Nov 11 2004 Jeff Johnson <jbj@jbj.org> 1.1.1-4 * Thu Nov 11 2004 Jeff Johnson <jbj@jbj.org> 1.1.1-4
- rebuild against db-4.3.21. - rebuild against db-4.3.21.
- x86_64: don't fail "make check" while diagnosing db-4.3.21 upgrade. - x86_64: don't fail "make check" while diagnosing db-4.3.21 upgrade.