2

please how to set Github 6.0 with Apache2?

Gitlab is installed according to the original instructions

Adjustment in Unicorn.rb

    ...
    #listen "/home/git/gitlab/tmp/sockets/gitlab.socket", :backlog => 64
    #listen "127.0.0.1:8080", :tcp_nopush => true
    listen "127.0.0.1:8080"
    ...

My Apache2 conf is :

    <VirtualHost *:80>
        ServerName git.domain.com

        ErrorLog /var/log/apache2/gitlab_error.log
        CustomLog /var/log/apache2/gitlab_access.log combined

        ProxyRequests Off
        ProxyPreserveHost On
        ProxyPass / http://127.0.0.1:8080/
        <Location />
            ProxyPassReverse /
            Order deny,allow
            Allow from all
        </Location>
    </VirtualHost>

Bud i get :

    The proxy server received an invalid response from an upstream server.
    The proxy server could not handle the request GET /users/sign_in.

    Reason: Error reading from remote server

Thank you

4

1 回答 1

1

如果这对其他人有帮助;

我遇到了同样的问题,但在我的情况下是磁盘空间不足。我删除了一些大型备份并重新启动了 apache,service httpd restart然后我的 gitlab 又回来了。

于 2013-11-25T10:13:51.993 回答