Created
January 10, 2016 09:40
-
-
Save ikuwow/1e0c74ce9ad5fc4e6f36 to your computer and use it in GitHub Desktop.
GitLab7系から8系にあげるときのポイントと、Apacheだとソケットをhttpにしないとハマる話 ref: http://qiita.com/ikuwow/items/5faa16b54522fc5f4569
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git pull origin master | |
Unable to connect ... connection refused 503(うろ覚え) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
...(省略)... | |
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 | |
...(省略)... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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