Project

General

Profile

Actions

HowToAllowAccessToOnlyCertainFileTypes » History » Revision 2

« Previous | Revision 2/4 (diff) | Next »
Anonymous, 2006-10-18 20:27


How To Allow Access to only Certain File Types

It is easy in lighttpd to deny access to a few types of files using mod_access:

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

But what if you want to allow access to only a few types of files, and deny access to all others? In the example below, we allow access to common static file types, and deny access to all other files:

{{{
$HTTP["url"] !~ "\.(jpg|gif|png|ico|js|css)$" {
url.access-deny = ( "" )
}
}}}

This will cause all URLs that don't match the pattern to be denied. Note that all non-matching URLs will return 403 Forbidden, non-existent files will not return 404 Not Found.

Updated by Anonymous over 17 years ago · 2 revisions