Can't start empty Rails 2.3.2 project from Lighttpd:
2009-03-18 08:52:13: (mod_fastcgi.c.1047) the fastcgi-backend
/var/www/rails/public/dispatch.fcgi failed to start:
./script/server works fine.
Also Rails 2.2.2 works fine on Lighttpd.
Was there some changes in 2.3.2, do I need new configuration for 2.3.2?
$HTTP["host"] =~ "^(mydomain.com)$" {
server.error-handler-404 = "/dispatch.fcgi"
server.indexfiles = ( "dispatch.fcgi", "index.php", "index.html"
)
fastcgi.server += (
".fcgi" => (
"localhost" => (
"min-procs" => 1,
"max-procs" => 1,
"socket" => "/tmp/rails.socket",
"bin-path" => "
/var/www/rails/public/dispatch.fcgi"
)
)
)
}
--
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 [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---