Please note that you should not enable FastCGI for your application until you're certain that it's ready for production use.
To enable FastCGI, simply edit your public/.htaccess file. Find the line that looks like this:
RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
And change it to look like this:
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
That's it! Your Rails application is now using FastCGI.

There are no comments yet...Kick things off by adding a comment →