rails + lighttpd + fastcgi の環境で、fastcgi の起動・停止・再起動を capistrano に任せる作業に、少しハマったので作業メモを残す。 deploy.rb の内容や、他の詳しい解説は他のウェブ上資料に譲る。 app_name/script/spin ./script/process/spawner fcgi -p 11000 -i 3 -r 5 実行権限を忘れずに。 app_name/config/lighttpd.conf fastcgi.server = ( ".fcgi" => ( "localhost-11000" => ( "host" => "127.0.0.1", "port" => 11000 ), "localhost-11001" => ( "host" => "127.0.0.1", "port" => 11001 ), "lo