Hello to all,
I've web-server Apache:
[root@services share]# httpd -v
Server version: Apache/2.2.17 (Unix)
on Fedora Linux:
[root@services share]# cat /etc/issue
Fedora release 14 (Laughlin)
And I have domain example.domain.com where I want to see file listing in the current directory, but when I go in the browser to example.domain.com I get the next error:
Forbidden
You don't have permission to access / on this server.
So I don't know what is the problem =(
My httpd.conf:
<Directory />
Order allow,deny
Allow from All
AllowOverride All
IndexOptions +FancyIndexing
Options +Indexes Includes MultiViews FollowSymLinks AuthConfig FileInfo
</Directory>
My .htaccess file:
[root@services QaTests]# cat .htaccess
Options +Indexes
My directory:
drwxrwsrwt 5 root apache 4096 Jan 26 17:15 QaTests
What could be a problem I don't have any idea =(
Could somebody to help me please?
---------- Post added at 12:34 PM ---------- Previous post was at 10:30 AM ----------
I just solved this problem. But I don't think that's good solution, I changed file httpd.conf like this:
<Directory "/usr/share/QaTests">
#Options +Indexes FollowSymLinks
Options All
AllowOverride AuthConfig FileInfo
Order allow,deny
Allow from all
</Directory>
<Location />
Options All
</Location>
So
Option All helped me.