How to add directory browsing in apache configuration?

One of the “must do’s” on setting a secure apache web server is to disable directory browsing. 

Usually apache comes with this feature enabled but its always a good idea to get it disabled unless you really need it.

First of all find where is the main apache’s config file httpd.conf is located. 

Usually it will be located in path like this: /etc/apache/httpd.conf
To edit this file you will need root access to your server.

Using some file editor like Vim or Nano open this file and find the line that looks as follows:

Options Includes FollowSymLinks MultiViews

then add word Indexes and save the file. The line should look like this one:

Options Includes Indexes FollowSymLinks MultiViews

After it is done, restart apache (e.g. /etc/init.d/apache restart). 

About Damon Luong

San Jose, California
This entry was posted in apache, command line of linux, My Linux. Bookmark the permalink.