This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"DESTDIR"=>"", | |
"MAJOR"=>"2", | |
"MINOR"=>"0", | |
"TEENY"=>"0", | |
"PATCHLEVEL"=>"247", | |
"INSTALL"=>"/usr/bin/install", | |
"EXEEXT"=>"", | |
"prefix"=>"/usr/local/rvm/rubies/ruby-2.0.0-p247", | |
"ruby_install_name"=>"ruby", | |
"RUBY_INSTALL_NAME"=>"ruby", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Install mod_fastcgi with Brew https://github.com/Homebrew/homebrew-apache/ | |
LoadModule fastcgi_module /usr/local/Cellar/mod_fastcgi/2.4.6/libexec/mod_fastcgi.so | |
# Create a directory for the iipsrv binary | |
ScriptAlias /fcgi-bin/ "/usr/local/Library/WebServer/CGI-Executables/" | |
# Set the module handler | |
AddHandler fastcgi-script fcgi | |
# Initialise some variables for the FCGI server | |
FastCgiServer /usr/local/Library/WebServer/CGI-Executables/iipsrv.fcgi \ | |
-initial-env LOGFILE=/tmp/iipsrv.log \ |