Skip to content
This repository has been archived by the owner on Nov 22, 2017. It is now read-only.

Commit

Permalink
added a simple config.ru for running under passenger
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashid Khan committed Sep 6, 2012
1 parent 2d65008 commit 269f953
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions config.ru
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
require 'kibana'
require 'rubygems'
require 'sinatra'

set :environment, ENV['RACK_ENV'].to_sym
set :app_file, 'kibana.rb'
disable :run

run Sinatra::Application

1 comment on commit 269f953

@gshutler
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was going to submit a pull request for this as I added it yesterday for my own deployment. Nice work by the way.

👍

Please sign in to comment.