I want to allow ONLY a specific User-Agent "Mozilla/4.0" to get some specific files on some host:
location ~* ^.+.(txt|doc).*?$ {
if ($http_user_agent !~ ^Mozilla/4\.0$) {
return 404;
}
}
and doesn't seem to work, what do I do wrong?
Mozilla/4.0? There's no browsers with the string exact like your regexp. – VBart Nov 20 '12 at 12:06location. Could you provide full config? – VBart Nov 28 '12 at 16:04