Intro to Apache - ApacheCon
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 : Intro to Apache - Slide #111 of 139