A ruby RACK webserver only for unix using the old unix style. We developed and used it in production at Brightroll.com. We recommend it for any small rack, sinatra, etc app that needs to have a high uptime. It is great for production use as well as development.
see LICENSE.txt (basically MIT license)
Add this line to your application's Gemfile:
gem 'unixrack'
And then execute:
$ bundle
Or install it yourself as:
$ gem install unixrack
Here is an example command to run the standard Rack lobster web app. You can get the sample in the samples directory from the github repo at: https://github.com/drudru/unixrack. Copy lobster.ru into your current dir then run:
$ RACK_ENV=stage rackup --port 4004 -s unixrack -r unixrack lobster.ru
To run your own application, just create your own rackup (.ru) file with your own Rack middleware.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request