Hi guys, Any thoughts on why using unicorn to run merb would quickly load up the merb app, close it down, then respawn and try again - and then repeat that over and over again.
The config.ru file is the same I'd use for thin, and I'm on the latest Merb 1.1 from wycats github. #my config.ru require 'merb-core' Merb::Config.setup(:merb_root => ".", :environment => ENV['RACK_ENV']) Merb.environment = Merb::Config[:environment] Merb.root = Merb::Config[:merb_root] Merb::BootLoader.run use Merb::Rack::Static, Merb.dir_for(:public) run Merb::Rack::Application.new # if you want to try unicorn yourself. The command to setup and run unicorn is: sudo gem install unicorn cd yourapp unicorn # alternatively to try on a rails app it's 'unicorn_rails' I'm asking this in the unicorn forum too. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "merb" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/merb?hl=en -~----------~----~----~----~------~----~------~--~---
