Archive for December 16th, 2007

Patch for ruby-fcgi

December 16th, 2007

Current Ruby FastCGI module doesn’t allow you to specify port number or unix domain socket file path of connection.

I have create a patch to enable to specify port number or socket file path. If you have applied the patch, the following code is available.

require 'rubygems' require 'fcgi' arg = "/tmp/mysocket.sock" # or arg = 8001 [...]