You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Rob Hartill <ha...@ooo.lanl.gov> on 1995/10/20 22:57:35 UTC

request..

> I would really like to specify more than one access type per directory.
> For example, I have a document that I want to only be accessable from
> two machines and then require a password from whoever uses those
> machines.
 
> The access.conf entry I invision would be something like:
 
>     <Directory /users/www/staff/private>
>     AuthGroupFile /users/www/staff/.htgroup
>     AuthUserFile /users/www/staff/.htpasswd
>     <Limit PUT GET>
>     order deny,allow
>     deny from all
>     allow from pinky.finger.com ring.finger.com
>     require group staffops
>     </Limit>
>     </Directory>