Hi Walter this is mine:

<VirtualHost *:80>
    ServerName my.domain.com
    DocumentRoot /var/www/
    ErrorLog logs/redmine_error_log

   <Directory "/var/www/redmine/public/">
    Options -MultiViews Indexes ExecCGI FollowSymLinks
    Order allow,deny
    Allow from all
    AllowOverride all
   </Directory>
</VirtualHost>

if I set -Indexes, the site does not work at all.


Walter Davis wrote in post #1163219:
> What does the Apache conf file look like for this host? Apache is trying
> to tack an auto-index on this page, which is messing with the route
> passed in from Passenger.
>
> Here's a snippet from one of mine -- note the -Indexes directive. Does
> yours have that?
>
>   <Directory /data/www/example.com/public>
>     Options -Indexes FollowSymLinks -MultiViews
>     AllowOverride All
>     Order allow,deny
>     allow from all
>   </Directory>
>
> Walter

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/a4b2609669e6907bc0aa90d7f61e11cb%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to