On 26 Mai 2011 21h10 WEST, nginx-forum@nginx.us wrote:
> Thanks people
>
> So there's no way to say "If the file ISNT a jpeg/gif/css/js"
> deny. The only way is to say 'if .php' deny, 'if .txt deny' etc?
>
> I'd prefer to whitelist the files i DO want to return and block
> everything else, incase I forget something to block?
>
Try this:
location ~* /static_files_dir/(?[^.]*)\.(?<extension>.*)$ {
if ($extension !~ (?:jpe?g|png|gif|ico|css|js)) {
return 444;
}
}
It's rather ugly :(
--- appa
_______________________________________________
nginx mailing list
nginx@nginx.org
http://nginx.org/mailman/listinfo/nginx