Guest User

Untitled

a guest
May 25th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. # config.ru, placed in root of site
  2.  
  3. require 'rubygems'
  4. require 'vendor/sinatra/lib/sinatra.rb'
  5.  
  6. Sinatra::Application.default_options.merge!(
  7. :run => false,
  8. :env => :production,
  9. :views => '/home/.gimp/YOUR_SERVER_USER_NAME/YOUR_DOMAIN_NAME/views'
  10. )
  11.  
  12.  
  13. require 'your_app.rb'
  14. run Sinatra.application
Add Comment
Please, Sign In to add comment