Results 1 to 2 of 2
Stop folder traversing for web users
Hi I have a web server with multiple web users , each user is able transverse to its parent directory and at the other ...
- 04-15-2009 #1Just Joined!
- Join Date
- Jan 2008
- Posts
- 4
Stop parent folder traversing for web users
Stop folder traversing for web users
Hi I have a web server with multiple web users , each user is able transverse to its parent directory and at the other users directories.
I have configured httpd.conf for each directory as such
<Directory "/var/www/html/mark">
AuthType Basic
AuthName "mark"
AuthUserFile /etc/httpd/passwd/passwords
Require user web mark
</Directory>
I have played around with allow and deny but to no avail
Is there any way to prevent traversing to the parent folder for each user ??
Thanks
- 04-15-2009 #2Just Joined!
- Join Date
- Apr 2009
- Posts
- 90
<Directory "/var/www/html">
Deny from All
Order Deny, Allow
</Directory>
?


Reply With Quote