Skip to content
Snippets Groups Projects
Commit 42c61eea authored by Jacob Holloway's avatar Jacob Holloway
Browse files

Comment to change config files to use full path

gitlab/config and gitlab-shell/config had symbolic links (/home/*), but they needed to be full paths (/usr/home/*) for pushing from command line and adding files from the web browser.

(Fix found at https://github.com/gitlabhq/gitlabhq/issues/8703 and worked or me.)
parent a1f4d560
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -172,6 +172,7 @@ Edit the GitLab configuration file
(`sudo -u git -H vim config/gitlab.yml`)
* The option `host:` should be set to your domain, e.g. "gitlab.mysite.com".
* The line `bin_path:` should be set to FreeBSD's `git` location: `/usr/local/bin/git`.
* Change /home/* to be /usr/home/* (home is a symbolic link that doesn't work)
 
As root:
 
Loading
Loading
@@ -230,6 +231,7 @@ sudo -u git -H bundle install --deployment --without development test mysql aws
sudo -u git -H bundle exec rake gitlab:shell:install[v2.4.1] REDIS_URL=unix:/usr/local/var/run/redis/redis.sock RAILS_ENV=production
 
# Edit the gitlab-shell config
# Change /home/* to be /usr/home/* (home is a symbolic link that doesn't work)
# Change the 'socket' option to '/usr/local/var/run/redis/redis.sock'
# Change the 'gitlab_url' option to 'http://localhost:8080/'
# Don't bother configuring any SSL stuff in here because it's used internally
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment