Project

General

Profile

Mod access » History » Revision 18

Revision 17 (zkv, 2008-11-21 20:47) → Revision 18/28 (zkv, 2008-11-21 20:55)

h1. Module mod_access 

 {{>toc}} 

 h2. Description 

 The access module is used to deny access to files. 

 h2. Options 

 *url.access-deny* 
 Denies access to all files with any of given trailing path names.  
 Default value:empty 

 *access.deny-all* 
 Denies access to all files. 
 *Note*: access.deny-all should be used with a conditional to limit it (only from lighty 1.5x) 

 h2. Usage examples 

 You We might want to deny access to all files ending ended with a tilde (~) or .inc because of:     

 # Text editors often use a trailing tilde for backup files. 
 # And the .inc extension is often used for include files with code. 

 *url.access-deny* 
 <pre> 

     url.access-deny = ( "~", ".inc") 

 </pre> 

 *access.deny-all usage* 
 <pre> 

     $PHYSICAL["path"] =~ "(~|\.inc)$" { 
         access.deny-all = "enable" 
     } 

 </pre> 

 *Directory deny access* 
 <pre> 

     $PHYSICAL["path"] !~ "^/srv/example.org/" { 
         access.deny-all = "enable" 
     } 

 </pre> 

 *Directory deny access (1.4x versions)* 
 <pre> 

     $HTTP["url"] =~ "^/libraries" { 
         url.access-deny = ("") 
     } 

 </pre>