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
...
..
<IfModule mod_fastcgi.c>
FastCgiIpcDir /tmp/fcgi_ipc/
AddHandler fastcgi-script .fcgi
</IfModule>
...
...
<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
</Directory>
</VirtualHost>
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
--
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 post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk
-~----------~----~----~----~------~----~------~--~---