Deny access to .htaccess files in lighttpd
Sun, 06/27/2010 - 21:36 — sandipIn lighttpd you can use mod_access to deny files starting with a certain expression, such as hidden dot files. (example: .htaccess or .svn)
# Deny access to hidden files
$HTTP["url"] =~ "/\." {
url.access-deny = ("")
}
- sandip's blog
- Login or register to post comments