Skip to content

Instantly share code, notes, and snippets.

@ikuwow
Created January 10, 2016 09:40
Show Gist options
  • Save ikuwow/1e0c74ce9ad5fc4e6f36 to your computer and use it in GitHub Desktop.
Save ikuwow/1e0c74ce9ad5fc4e6f36 to your computer and use it in GitHub Desktop.
GitLab7系から8系にあげるときのポイントと、Apacheだとソケットをhttpにしないとハマる話 ref: http://qiita.com/ikuwow/items/5faa16b54522fc5f4569
$ git pull origin master
Unable to connect ... connection refused 503(うろ覚え)
...(省略)...
gitlab_workhorse_options="-listenUmask 0 -listenNetwork unix -listenAddr $socket_path/gitlab-workhorse.socket -authBackend http://127.0.0.1:8080 -authSocket $rails_socket -documentRoot $app_root/public"
gitlab_workhorse_log="$app_root/log/gitlab-workhorse.log"
shell_path="/bin/bash"
# Read configuration variable file if it is present
test -f /etc/default/gitlab && . /etc/default/gitlab
...(省略)...
gitlab_workhorse_options="-listenUmask 0 -listenNetwork tcp -listenAddr localhost:8181 -authBackend http://127.0.0.1:8080 -authSocket $socket_path/gitlab.socket -documentRoot $app_root/public"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment