Allow running discourse with prefix with passenger without requiring a symlink

This commit is contained in:
Wojciech Kocjan 2013-04-10 13:14:04 +02:00
parent 33e3ad1603
commit 933732676b
1 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
# This file is used by Rack-based servers to start the application.
require ::File.expand_path('../config/environment', __FILE__)
run Discourse::Application
map ActionController::Base.config.try(:relative_url_root) || "/" do
run Discourse::Application
end