Hello,
on Debian Stretch since a week I have a problem with updated versions of OX and Apache, while before it worked perfectly.
When I go to OX home I get this error: "Forbidden - You don't have permission to access /appsuite/ on this server."
In /var/log/apache2/error.log I can see: "[Mon Mar 21 09:49:17.728070 2016] [autoindex:error] [pid 32717] [client 80.16.158.206:3484] AH01276: Cannot serve directory /var/www/appsuite/: No matching DirectoryIndex (index.html,index.cgi,index.pl,index.php,index.xht ml,index.htm) found, and server-generated directory index forbidden by Options directive"
This is part of my apache configuration:
Any idea?
If I add +Indexes here (*) I can see directory content, but nothing more...
Thanks,
Matteo
on Debian Stretch since a week I have a problem with updated versions of OX and Apache, while before it worked perfectly.
When I go to OX home I get this error: "Forbidden - You don't have permission to access /appsuite/ on this server."
In /var/log/apache2/error.log I can see: "[Mon Mar 21 09:49:17.728070 2016] [autoindex:error] [pid 32717] [client 80.16.158.206:3484] AH01276: Cannot serve directory /var/www/appsuite/: No matching DirectoryIndex (index.html,index.cgi,index.pl,index.php,index.xht ml,index.htm) found, and server-generated directory index forbidden by Options directive"
This is part of my apache configuration:
Code:
DocumentRoot /var/www <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all RedirectMatch ^/$ /appsuite/ </Directory> <Directory /var/www/appsuite> Options None +SymLinksIfOwnerMatch # (*) AllowOverride Indexes FileInfo </Directory>
If I add +Indexes here (*) I can see directory content, but nothing more...
Thanks,
Matteo
Comment