Intro to Apache - ApacheCon 2005
Security - denying access to non-doc directories
    
        <Directory />
            Order deny,allow
            Deny From all
        </Directory>
    
      
  • Will need to explicitly allow access for directories.

    
        <Directory /home/apache/docs>
            Order Allow,Deny
            Allow from all
        </Directory>
    
      

Index
Back to Security - CGI and suexec
Forward to More about Security

ApacheCon 2005 : Intro to Apache - Slide #113 of 164