Hello, I have a question about limiting users to a direcotry, basically I want to limit the users to a certain directory. ie: user1 would be limited to browsing user1's directory. Currently I am doing the following for each user in the htpasswd file:

Alias /user1 "/export/home/user1"
<Directory "/export/home/user1">
    AuthName Admin
    AuthType Basic
    AuthUserFile /usr/local/apache1/conf/cliweb-passwd
    Options None
    AllowOverride None
    Order allow,deny
    Allow from all
    require user user1
</Directory>

I was wondering if there's a faster way to do this, so that I don't have to create an entry for each user?

Thanks,
Chris Black
Jr. Client Operations Engineer

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to