I am a newbie to ruby rails and apache so i hope this is not a stupid
question but, have written an application which runs on webrick the
webserver that comes pre-packaged with locamotive. I am now trying to
get the application to run on my apache server but i am having a small
problem!
in my httpd.conf i have set the server to load fast cgi and where the
applications virtual host is to be found
…
…
AddModule mod_fastcgi.c
…
…
FastCgiIpcDir /tmp/fcgi_ipc/
AddHandler fastcgi-script .fcgi
…
…
<VirtualHost *>
SetEnv RAILS_ENV development
ServerName testsite
DocumentRoot /Users/sherwood/Rails/Todo/public
ErrorLog /Users/sherwood/Rails/Todo/log/server.log
<Directory Users/sherwood/Rails/Todo/public/>
Options ExecCGI FollowSymLinks
AllowOverride all
Allow from all
Order allow,deny
which i think is all correct and when i go to
http://testsite
the welcome aboard you’re riding the rails! screen comes up but when i
click on
about your applications environment gives a file not found error
Not Found
The requested URL /rails/info/properties was not found on this server.
and in teh server log error
[Fri Oct 6 14:24:07 2006] [error] [client 127.0.0.1] File does not
exist: /Users/sherwood/Rails/Todo/public/rails/info/properties
can someone help