2015-09-11 14:41:01 +05:30
|
|
|
default_url_options = {
|
|
|
|
host: Gitlab.config.gitlab.host,
|
|
|
|
protocol: Gitlab.config.gitlab.protocol,
|
|
|
|
script_name: Gitlab.config.gitlab.relative_url_root
|
|
|
|
}
|
|
|
|
|
|
|
|
unless Gitlab.config.gitlab_on_standard_port?
|
|
|
|
default_url_options[:port] = Gitlab.config.gitlab.port
|
|
|
|
end
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
Gitlab::Application.routes.default_url_options = default_url_options
|