Repository is archived
No commit activity in last 3 years
No release in over 3 years
Rainbows! helper
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

H2ocubeRailsPuma

Gem Version

Puma helper.

Installation

Add this line to your application's Gemfile:

gem 'h2ocube_rails_rainbows', group: [:development, :production]

And then execute:

$ bundle

Or install it yourself as:

$ gem install h2ocube_rails_rainbows

Usage

# Capfile
require 'capistrano/rainbows'

# config/deploy.rb
set :rainbows_bin, 'rainbows' # you can use `unicorn` replace `rainbows` 

Rainbows specific tasks for Capistrano v3:

cap rainbows:start
cap rainbows:stop
cap rainbows:restart
cap rainbows:cold_restart

# nginx.conf
upstream app {
  server unix:/root/app/shared/sockets/rainbows.sock fail_timeout=0;
}
server {
  listen 80;
  server_name app.com;
  root /root/app/current/public;
  location / {
    if ($request_uri ~* "\.(ico|css|js|gif|jpe?g|png)\?[0-9]*$") {
      expires max;
      break;
    }
    try_files $uri @app;
  }
  location @app {
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_set_header X-UA-Compatible IE=edge,chrome=1;
    proxy_redirect off;
    proxy_pass http://app;
  }
}

Include

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request