Enable directory browser at server level?

ozgurerdogan

Verified User
Joined
Apr 20, 2008
Messages
343
I enabled in /etc/httpd/conf/extra/httpd-directories.conf

from
<Directory /home>
AllowOverride All
Options -MultiViews -Indexes +FollowSymLinks +IncludesNoExec +Includes

to
<Directory /home>
AllowOverride All
Options -MultiViews +Indexes +FollowSymLinks +IncludesNoExec +Includes

and restarted apache. But www.domain.com/folder still makes forbidden error. Single .htaccess file can list its content. But I want to make it at server level.
 
Its not safe to do that server wide. You should be creating a .htaccess file in folder /home/user/domains/domain.com/public_html/folder and in it put:

Code:
Options +Indexes
 
Its not safe to do that server wide. You should be creating a .htaccess file in folder /home/user/domains/domain.com/public_html/folder and in it put:

Code:
Options +Indexes

I know that but thats a private vps and client want it so. So what is the way for server level?
 
Back
Top