I am newbie to Linux.
I want to enable directory indexing in "/var/www/html/" [dont want to use index.html or something else htm or php file , just want to show all files and folders when browsing
http://localhost ] security risk but i damn care about it.
Code:
1- Using Fedora 12
2- Apache version 2.2.14-1 .fc12.i686
3- SELINUX=disabled
getsebool -a | grep http
getsebool: SELinux is disabled
My permissions for /var/www/html are
Code:
ls -la /var/www/html
total 120
drwxr-xr-x 2 root root 4096 2010-01-26 18:18 .
drwxr-xr-x 8 root root 4096 2010-01-26 00:57 ..
-rwxr-xr-x 1 root root 1102 2010-01-26 18:16 grub editor.txt
-rw-r--r-- 1 root root 21262 2010-01-26 00:28 linux_software_installtion.html
-rw-r--r-- 1 root root 60002 2010-01-26 18:16 linux_software_installtion.pdf
-rwxr-xr-x 1 root root 2576 2010-01-26 18:16 Login as a root from GUI Fedora 12
-rw-r--r-- 1 root root 1199 2010-01-26 18:16 Login_as_root_F12
-rw-r--r-- 1 root root 91 2010-01-26 18:16 vim_commands
my httpd.conf file configuration is
Code:
DocumentRoot /var/www/html
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Getting the Fedora Test Page. There is no directory indexing Please Help
Thanks
======================