WebDAV - ApacheCon 2005
Restricting DAV
    
       <Location /uploads>
           DAV On
           # Limit just the DAV methods
           <Limit PUT POST DELETE PROPFIND PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
               AuthType Basic
               AuthName uploads
               AuthUserFile /etc/apache/passwords
    
      
    
               Require user rich
           </Limit>
       </Location>
    
      
  • Will allow general access to web clients, but requires authentication for DAV accesses

Index
Back to Dav On
Forward to Possible problems

ApacheCon 2005 : WebDAV - Slide #12 of 30