Skip to content

Instantly share code, notes, and snippets.

@fedesilva
Forked from retr0h/gist:98297
Created May 10, 2011 02:34
Show Gist options
  • Save fedesilva/963824 to your computer and use it in GitHub Desktop.
Save fedesilva/963824 to your computer and use it in GitHub Desktop.
##
# Rack configuration for use with Phusion Passenger.
#
# Updated with Blake's suggestions from: http://gist.github.com/98711
log = File.new('log/sinatra.log', 'a')
$stdout.reopen(log)
$stderr.reopen(log)
require 'YOUR_APPLICATION'
run Sinatra::Application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment