Hi!
I try to setup an Apache server and have done so before with 1.x versions before... But now as I try to setup a server where directory listings will be permitted, without index files, it doesn't work

. In the error log I find:
Code:
Directory index forbidden by Options directive: /var/www/html/xxx/
In the config file I have these settings:
Code:
DocumentRoot "/var/www/html"
<Directory />
Options Indexes FollowSymLinks
AllowOverride None
</Directory>
Code:
<Directory "/var/www/html">
Options Indexes Includes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Code:
<VirtualHost *:80>
ServerAdmin info@xxx.se
DocumentRoot /var/www/html/xxx
ServerName xxx.se
ErrorLog /var/log/httpd/xxx-error_log
CustomLog /var/log/httpd/xxx-access_log common
</VirtualHost>
<Directory /var/www/html/xxx>
Options All
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Since I have found the Apache support quite hard to get and to understand, I hope someone more experienced person in this forum may help me out since I really need a clue here...
Thanks,
misjka