Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have stumbled upon several solutions for limiting access to directories using "Deny for all, Allow from env=search_robot", etc. But then when I also use to require valid-user, those are overridden. Is there a master combo that does them both?

This is some example code for what I mean:

 <Directory "/var/www/sitename">
     Options MultiViews FollowSymlinks Includes
     AllowOverride All
     Order Deny,Allow
     Allow from All

     AuthUserFile /home/user/pwds/sitename/.htpasswd
     AuthGroupFile /dev/null
     AuthName "Password Protected Area"
     AuthType Basic

     <Limit GET POST>
         SetEnvIf User-Agent ^Swiftype search_robot
         Allow from env=search_robot
         Allow from live.swiftype.com
         Allow from swiftype.com
         require valid-user
     </Limit>

 </Directory>
share|improve this question
This is a very bad idea from a security standpoint, since the User-Agent header is under complete control of the client (or attacker)! – Perleone Feb 12 at 14:31

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.