diff options
Diffstat (limited to 'config.ru')
-rw-r--r-- | config.ru | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config.ru b/config.ru index 5ef2a0289fe..dfd2d862237 100644 --- a/config.ru +++ b/config.ru @@ -1,4 +1,7 @@ # This file is used by Rack-based servers to start the application. require ::File.expand_path('../config/environment', __FILE__) -run Gitlab::Application + +map ENV['RAILS_RELATIVE_URL_ROOT'] || "/" do + run Gitlab::Application +end |