socialforge/config.ru

9 lines
234 B
Plaintext
Raw Normal View History

2013-08-01 10:33:49 +08:00
# This file is used by Rack-based servers to start the application.
require ::File.expand_path('../config/environment', __FILE__)
2013-08-11 15:05:55 +08:00
2013-08-15 18:50:44 +08:00
map ActionController::Base.config.try(:relative_url_root) || "/" do
run RedmineApp::Application
2013-08-11 15:05:55 +08:00
end
2013-08-15 18:50:44 +08:00