git-http-backend zwraca błąd 502

Używam gitweb i gitolite na moim serwerze:http://git.jshawl.com/

Mam problem z ustawieniemgit-http-backend aby umożliwić anonimowe klonowanie.

Oto, co mój plik vhosts (/etc/apache2/extra/httpd-vhosts.conf) wygląda jak:

<VirtualHost *:80>
DocumentRoot "/Users/git/repositories"
ServerName git.jshawl.com
 <Directory "/Users/git/repositories">
    Options ExecCGI +FollowSymLinks +SymLinksIfOwnerMatch
    AllowOverride All
    order allow,deny
    Allow from all
    AddHandler cgi-script cgi
    DirectoryIndex gitweb.cgi
</Directory>

<LocationMatch "^/.*/git-receive-pack$">
    AuthType Basic
    AuthName "Git Access"
    Require group committers
</LocationMatch

SetEnv GIT_PROJECT_ROOT /Users/git/repositories
SetEnv GIT_HTTP_EXPORT_ALL
ScriptAliasMatch \
    "(?x)^/(.*/(HEAD | \
        info/refs | \
            objects/(info/[^/]+ | \
                [0-9a-f]{2}/[0-9a-f]{38} | \
                    pack/pack-[0-9a-f]{40}\.(pack|idx)) | \
            git-(upload|receive)-pack))$" \
    /usr/libexec/git-core/git-http-backend/$1

ScriptAlias / /Users/git/repositories/gitweb.cgi/

`

Postępowałem zgodnie ze wskazówkami tutaj:http://www.kernel.org/pub/software/scm/git/docs/git-http-backend.html, ale jestem konsekwentnie konfrontowany z tym błędem 502.

Mój dziennik błędów apache mówi:[Fri Aug 24 19:29:32 2012] [error] [client 198.228.200.148] client denied by server configuration: /usr/libexec/git-core/git-http-backend

Ponadto dodanie tego wszystkiego spowodowało usunięcie mojej instalacji gitweb (która kiedyś była whttp://git.jshawl.com)

Co ja robię źle?

questionAnswers(1)

yourAnswerToTheQuestion