Gitlab6.0 i Apache2

jak ustawić Github 6.0 z Apache2?

Gitlab jest instalowany zgodnie z oryginalnymi instrukcjami

Regulacja w 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"
    ...

Moja konfiguracja Apache2 to:

    <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, dostaję:

    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

Dziękuję Ci

questionAnswers(1)

yourAnswerToTheQuestion