public this repo is viewable by everyone
Description: Run multiple framework / rack app / wathever inside the same VM
Clone URL: git://github.com/macournoyer/rack_sandbox.git
macournoyer (author)
about 1 month ago
commit  76421805e5db5e380dfa3eadcd67dae8916fd277
tree    49487cc012b179b33daf2293e5c0975d452ab60e
parent  95167f5720d92c1d2a3a02b9ba5963ac8aaa1cac
name age message
folder COPYING Fri Mar 21 12:51:03 -0700 2008 first commit [macournoyer]
folder README Fri Mar 21 12:55:34 -0700 2008 More accurate README [macournoyer]
folder example/ Fri Mar 21 12:51:03 -0700 2008 first commit [macournoyer]
folder lib/ Fri Mar 21 12:51:03 -0700 2008 first commit [macournoyer]
README
== Rack Sandbox Adapter

Run multiple framework / rack app / wathever inside the same VM
using _why Freaky Freaky Sandbox: http://code.whytheluckystiff.net/sandbox/

=== Installation

Patch Ruby and install The Sandbox:
http://code.whytheluckystiff.net/sandbox/wiki/InstallingTheSandbox

=== Usage

In config.ru:

 require 'sandbox' # IMPORTANT: sandbox must be loaded before rubygems!
 require 'rubygems'

 require 'rack/adapter/sandboxed_rails'

 map 'http://myfirstapp.com' do
   run Rack::Adapter::SandboxedRails.new(:root => '/path/to/a/rails_app')
 end
 map 'http://mysecondapp.com' do
   run Rack::Adapter::SandboxedRails.new(:root => '/path/to/another/rails_app')
 end

Run using Thin:

 thin start -r config.ru

You first Rails app will be available at http://myfirstapp.com and the second one under http://mysecondapp.com.

Enjoy!

=== Limitation
The Rack Sandbox is still very hackish, it's works with very bare bone Rails application,
no gems, no session, no database. Some more hacking needs to be done to support a full app.

=== License
Ruby License, http://www.ruby-lang.org/en/LICENSE.txt
(C) Marc-Andre Cournoyer <macournoyer@gmail.com>