Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Nobody can help in this matter? – xtmtrx Nov 20 '12 at 6:28
Are you sure that user agent is Mozilla/4.0? There's no browsers with the string exact like your regexp. – VBart Nov 20 '12 at 12:06
I'm very sure about that because I set that User-Agent myself for testing: [28/Nov/2012:15:29:41 +0400] "POST /joomla/image.php HTTP/1.1" 200 150 "-" "Mozilla/4.0" – xtmtrx Nov 28 '12 at 11:30
Then it's most likely that your request doesn't even reach your new location. Could you provide full config? – VBart Nov 28 '12 at 16:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.