Hi,
I'm trying to use Vanilla as a forum software to integrate with my
Rails project. To do this, i placed the vanilla files in /var/www/
vanilla, which is symlinked to public/forums. I adapted the Vanilla
configuration files accordingly so that the URL'ing would be properly
done.
When accessing /forums/index.php, everything seems to be fine, working
nicely, but when I try to access /forums, I get "Application error -
Rails application failed to start properly".
I guessed that by default Apache couldn't figure out which file to
serve as default, so I added a DirectoryIndex line to the
configuration, but same error after reloading apache.
Currently my configuration looks like this (real domain/paths
confuscated):
<VirtualHost *:80>
ServerName
domain.com
DocumentRoot /path/to/rails/public
<Directory /path/to/rails/public/forums/>
PassengerEnabled off
AllowOverride all
DirectoryIndex index.php
</Directory>
</VirtualHost>