|
I'm not spotting a misconfiguration, but a few suggestions.
You did reload Apache after making changes to the configuration, right? Maybe look at the error log to see if it complains about your configuration at startup.
The error specifically complains about the Options directive, so check through all the included config files to see if -Indexes appears anywhere.
The below are longer shots given the error message, but other possible things to look at.
The permissions look fine (accesses to the filesystem will be as the user/group Apache is running as). Double-check that the user/group "apache" is the correct one - for example, in Debian and Ubuntu, the user and group are named "www-data" instead. If necessary, change group ownership of the /var/www/html/example.com/www/ directory.
Perhaps one of the settings is causing trouble? Try commenting out the IndexOptions and IndexIgnore directives, reload Apache, and see if you at least get a basic index display.
|