Changes between Version 3 and Version 4 of TipAndDoc/scm/svn


Ignore:
Timestamp:
Sep 19, 2010 10:46:53 PM (14 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/scm/svn

    v3 v4  
    2424</Location> 
    2525}}} 
     26 
     27 * 単純にRead-onlyにしたければ以下のようにすればよい 
     28{{{ 
     29RedirectMatch ^/svn$ /svn/ 
     30<Location /svn/> 
     31        # Requests for a collection must have a trailing slash on the URI. 
     32        DAV svn 
     33        SVNParentPath /path/to/svn 
     34        SVNListParentPath on 
     35        Order Allow,Deny 
     36        Allow from all 
     37        <LimitExcept GET PROPFIND OPTIONS REPORT> 
     38                # read-only svn access 
     39                Order Allow,Deny 
     40                Deny from all 
     41        </LimitExcept> 
     42</Location> 
     43}}}