You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2014/05/27 15:22:56 UTC

svn commit: r1597777 - /subversion/trunk/tools/dev/unix-build/Makefile.svn

Author: stsp
Date: Tue May 27 13:22:55 2014
New Revision: 1597777

URL: http://svn.apache.org/r1597777
Log:
* tools/dev/unix-build/Makefile.svn: In my custom build script, which is also
   used by the bb-openbsd buildbot, add some commented lines to the HTTPD
   configuration file which enable authorized access if used.

Modified:
    subversion/trunk/tools/dev/unix-build/Makefile.svn

Modified: subversion/trunk/tools/dev/unix-build/Makefile.svn
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/unix-build/Makefile.svn?rev=1597777&r1=1597776&r2=1597777&view=diff
==============================================================================
--- subversion/trunk/tools/dev/unix-build/Makefile.svn (original)
+++ subversion/trunk/tools/dev/unix-build/Makefile.svn Tue May 27 13:22:55 2014
@@ -1485,6 +1485,10 @@ endif
 	echo >>$@.tmp '    DAV svn'
 	echo >>$@.tmp '    SVNParentPath /tmp'
 	echo >>$@.tmp '    Allow from all'
+	echo >>$@.tmp '    #AuthType Basic'
+	echo >>$@.tmp '    #AuthName "Subversion Repository"'
+	echo >>$@.tmp '    #AuthUserFile $(HTTPD_CHECK_USERS)'
+	echo >>$@.tmp '    #Require valid-user'
 ifeq ($(USE_HTTPV1),yes)
 	echo >> $@.tmp '   SVNAdvertiseV2Protocol off'
 endif