Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
b532109b
Commit
b532109b
authored
Feb 09, 2016
by
Achilleas Pipinellis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Edit configuration files for relative URL support
[ci skip]
parent
41a95759
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
20 deletions
+23
-20
config/application.rb
config/application.rb
+4
-11
config/gitlab.yml.example
config/gitlab.yml.example
+5
-2
config/unicorn.rb.example
config/unicorn.rb.example
+5
-3
lib/support/init.d/gitlab.default.example
lib/support/init.d/gitlab.default.example
+9
-4
No files found.
config/application.rb
View file @
b532109b
...
@@ -52,17 +52,10 @@ module Gitlab
...
@@ -52,17 +52,10 @@ module Gitlab
config
.
action_view
.
sanitized_allowed_protocols
=
%w(smb)
config
.
action_view
.
sanitized_allowed_protocols
=
%w(smb)
# Relative url support
# Relative URL support
# Uncomment and customize the last line to run in a non-root path
# WARNING: We recommend using an FQDN to host GitLab in a root path instead of this.
# WARNING: We recommend creating a FQDN to host GitLab in a root path instead of this.
# Documentation: http://doc.gitlab.com/ce/install/relative_url.html
# Note that following settings need to be changed for this to work.
# Uncomment and customize the following line to run in a non-root path
# 1) In your application.rb file: config.relative_url_root = "/gitlab"
# 2) In your gitlab.yml file: relative_url_root: /gitlab
# 3) In your unicorn.rb: ENV['RAILS_RELATIVE_URL_ROOT'] = "/gitlab"
# 4) In ../gitlab-shell/config.yml: gitlab_url: "http://127.0.0.1/gitlab"
# 5) In lib/support/nginx/gitlab : do not use asset gzipping, remove block starting with "location ~ ^/(assets)/"
#
# To update the path, run: sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
#
#
# config.relative_url_root = "/gitlab"
# config.relative_url_root = "/gitlab"
...
...
config/gitlab.yml.example
View file @
b532109b
...
@@ -38,8 +38,11 @@ production: &base
...
@@ -38,8 +38,11 @@ production: &base
# Otherwise, ssh host will be set to the `host:` value above
# Otherwise, ssh host will be set to the `host:` value above
# ssh_host: ssh.host_example.com
# ssh_host: ssh.host_example.com
# WARNING: See config/application.rb under "Relative url support" for the list of
# Relative URL support
# other files that need to be changed for relative url support
# WARNING: We recommend using an FQDN to host GitLab in a root path instead of this.
# Documentation: http://doc.gitlab.com/ce/install/relative_url.html
# Uncomment and customize the following line to run in a non-root path
#
# relative_url_root: /gitlab
# relative_url_root: /gitlab
# Uncomment and customize if you can't use the default user to run GitLab (default: 'git')
# Uncomment and customize if you can't use the default user to run GitLab (default: 'git')
...
...
config/unicorn.rb.example
View file @
b532109b
...
@@ -10,9 +10,11 @@
...
@@ -10,9 +10,11 @@
# Note: If you change this file in a Merge Request, please also create a
# Note: If you change this file in a Merge Request, please also create a
# Merge Request on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests
# Merge Request on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests
#
# WARNING: See config/application.rb under "Relative url support" for the list of
# Relative URL support
# other files that need to be changed for relative url support
# WARNING: We recommend using an FQDN to host GitLab in a root path instead of this.
# Documentation: http://doc.gitlab.com/ce/install/relative_url.html
# Uncomment and customize the following line to run in a non-root path
#
#
# ENV['RAILS_RELATIVE_URL_ROOT'] = "/gitlab"
# ENV['RAILS_RELATIVE_URL_ROOT'] = "/gitlab"
...
...
lib/support/init.d/gitlab.default.example
View file @
b532109b
...
@@ -34,11 +34,16 @@ sidekiq_pid_path="$pid_path/sidekiq.pid"
...
@@ -34,11 +34,16 @@ sidekiq_pid_path="$pid_path/sidekiq.pid"
# /home/git/gitlab-workhorse .
# /home/git/gitlab-workhorse .
gitlab_workhorse_dir=$(cd $app_root/../gitlab-workhorse && pwd)
gitlab_workhorse_dir=$(cd $app_root/../gitlab-workhorse && pwd)
gitlab_workhorse_pid_path="$pid_path/gitlab-workhorse.pid"
gitlab_workhorse_pid_path="$pid_path/gitlab-workhorse.pid"
# The -listenXxx settings determine where gitlab-workhorse
# The -listenXxx settings determine where gitlab-workhorse
# listens for connections from NGINX. To listen on localhost:8181, write
# listens for connections from the web server. By default it listens to a
# '-listenNetwork tcp -listenAddr localhost:8181'.
# socket. To listen on TCP connections (needed by Apache) change to:
# The -authBackend setting tells gitlab-workhorse where it can reach
# '-listenNetwork tcp -listenAddr 127.0.0.1:8181'
# Unicorn.
#
# The -authBackend setting tells gitlab-workhorse where it can reach Unicorn.
# For relative URL support change to:
# '-authBackend http://127.0.0.1/8080/gitlab'
# Read more in http://doc.gitlab.com/ce/install/relative_url.html
gitlab_workhorse_options="-listenUmask 0 -listenNetwork unix -listenAddr $socket_path/gitlab-workhorse.socket -authBackend http://127.0.0.1:8080 -authSocket $socket_path/gitlab.socket -documentRoot $app_root/public"
gitlab_workhorse_options="-listenUmask 0 -listenNetwork unix -listenAddr $socket_path/gitlab-workhorse.socket -authBackend http://127.0.0.1:8080 -authSocket $socket_path/gitlab.socket -documentRoot $app_root/public"
gitlab_workhorse_log="$app_root/log/gitlab-workhorse.log"
gitlab_workhorse_log="$app_root/log/gitlab-workhorse.log"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment