gwynne                                   Tue, 02 Mar 2010 06:37:59 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=295721

Log:
SSL access to SVN, and CVS->SVN in global_avail

Changed paths:
    U   SVNROOT/global_avail
    U   SVNROOT/httpd.conf

Modified: SVNROOT/global_avail
===================================================================
--- SVNROOT/global_avail        2010-03-02 06:16:11 UTC (rev 295720)
+++ SVNROOT/global_avail        2010-03-02 06:37:59 UTC (rev 295721)
@@ -128,7 +128,7 @@
 avail|imajes,edink,derick,sfox,wez,goba,mj,pajoye,bjori,philip|systems

 # Finally, there are various people with access to various bits and
-# pieces of other CVS modules.
+# pieces of other SVN modules.

 avail|sterling,derick,imajes,phanto,sebastian,helly,jan|pecl/adt
 avail|beckerr,val,shire|pecl/apc

Modified: SVNROOT/httpd.conf
===================================================================
--- SVNROOT/httpd.conf  2010-03-02 06:16:11 UTC (rev 295720)
+++ SVNROOT/httpd.conf  2010-03-02 06:37:59 UTC (rev 295721)
@@ -42,24 +42,51 @@

 </VirtualHost>

-#NameVirtualHost *:443
-#<VirtualHost *:443>
-#   SSLEngine On
-#   SSLCipherSuite 
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
-#   SSLCertificateFile /local/this-box/php.net.crt
-#   SSLCertificateKeyFile  /local/this-box/php.net.key
-#   ServerName svn.php.net
-#   CustomLog "|/local/bin/rotatelogs /home/svn/logs/svn-ssl-svn_log.%Y%m%d 
86400" "%t %u %{SVN-ACTION}e" env=SVN-ACTION
-#   CustomLog "|/local/bin/rotatelogs /home/svn/logs/svn-ssl-access_log.%Y%m%d 
86400" combined
-#   ErrorLog "|/local/bin/rotatelogs /home/svn/logs/svn-ssl-error_log.%Y%m%d 
86400"
-#   <Location "/">
-#       DAV svn
-#       SVNPath "/home/svn/repository"
-#       Satisfy All
-#       Require valid-user
-#       AuthType Digest
-#       AuthName "PHP Subversion Repository"
-#       AuthUserFile "/home/svn/SVNROOT/passwd.db"
-#       AuthDigestDomain "/"
-#   </Location>
-#</VirtualHost>
+NameVirtualHost *:443
+<VirtualHost *:443>
+    SSLEngine On
+    SSLCipherSuite 
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
+    SSLCertificateFile /local/this-box/php.net.crt
+    SSLCertificateKeyFile  /local/this-box/php.net.key
+
+    ServerName svn.php.net
+    CustomLog "|/local/bin/rotatelogs /home/svn/logs/svn-ssl-svn_log.%Y%m%d 
86400" "%t %u %{SVN-ACTION}e" env=SVN-ACTION
+    CustomLog "|/local/bin/rotatelogs /home/svn/logs/svn-ssl-access_log.%Y%m%d 
86400" "%h %u %t \"%r\" %>s %b (%{cratio}n%%) \"%{Referer}i\" 
\"%{User-Agent}i\""
+    ErrorLog "|/local/bin/rotatelogs /home/svn/logs/svn-ssl-error_log.%Y%m%d 
86400"
+    DeflateCompressionLevel 6
+    DeflateFilterNote Ratio cratio
+    LogLevel info
+
+    ScriptAlias /viewvc /home/svn/viewvc-svn/bin/cgi/viewvc.cgi
+    ScriptAlias /query /home/svn/viewvc-svn/bin/cgi/query.cgi
+    Alias /docroot /home/svn/viewvc-svn/templates/docroot
+    <Directory "/home/svn/viewvc-svn/bin/cgi">
+        Options +ExecCGI
+        Order allow,deny
+        Allow from all
+    </Directory>
+    <Location "/">
+        DirectoryIndex viewvc
+        Order allow,deny
+        Allow from all
+    </Location>
+
+    <Location "/repository">
+        DAV svn
+        SVNPath "/home/svn/repository"
+       Order allow,deny
+       Allow from all
+        <LimitExcept GET PROPFIND OPTIONS REPORT>
+            Satisfy All
+            Require valid-user
+        </LimitExcept>
+        AuthType Digest
+        AuthName "PHP Subversion Repository"
+        AuthUserFile "/home/svn/SVNROOT/passwd.db"
+        AuthDigestDomain "/repository"
+        SetOutputFilter DEFLATE
+    </Location>
+
+    Alias /robots.txt /home/svn/robots.txt
+    RedirectMatch ^/(?!robots|repository|viewvc|query|docroot)(.*)$ /viewvc/$1
+</VirtualHost>

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to