Created
April 20, 2009 00:27
-
-
Save retr0h/98297 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# 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