O Apache não está chamando o Smart HTTP CGI

5

Estou configurando um servidor git com git-http-backend e Smart HTTP, mas o Apache não parece estar chamando o Smart HTTP CGI:

$ curl http://localhost/repo/myproject.git/info/refs?service=git-receive-pack
2ddf56592a0f55456b8c42dc9f2cb9289f083f53        refs/heads/1.0.x
55079bb13d9af8a9164ad0d24b654cbfe119bc7e        refs/heads/master

Aqui está minha configuração:

<VirtualHost *:8000>
  ServerName localhost
  DocumentRoot /opt/local/apache2/htdocs/repo

  SetEnv GIT_PROJECT_ROOT /opt/local/apache2/htdocs/repo
  SetEnv GIT_HTTP_EXPORT_ALL

  ScriptAlias /repo/ /usr/libexec/git-core/git-http-backend/
  AliasMatch ^/repo/(.*/objects/[0-9a-f]{2}/[0-9a-f]{38})$          /opt/local/apache2/htdocs/repo/$1
  AliasMatch ^/repo/(.*/objects/pack/pack-[0-9a-f]{40}.(pack|idx))$ /opt/local/apache2/htdocs/repo/$1

  ScriptAliasMatch \
    "(?x)^/repo/(.*/(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

  <Directory "/usr/libexec/git-core/">
    Options +ExecCGI
    Allow From All
  </Directory>

  <LocationMatch "^/repo/.*/git-receive-pack$">
    AuthType Basic
    AuthName "Git"
    Require valid-user
    AuthUserFile /etc/apache2/other/htpasswd
  </LocationMatch>
</VirtualHost>

Aqui está a saída de httpd -S :

VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
*:8000                 localhost (/private/etc/apache2/other/gitrepo.conf:1)
Syntax OK

E eu tenho http.receivepack enabled ( = true ) na minha configuração do git do lado do servidor:

[http]
  receivepack = true

Alguma idéia do que devo fazer?

    
por Bo A 29.07.2012 / 19:40

1 resposta

1

Bem, já que é no virtualhost para: 8000, eu presumo que você queira colocar http: // localhost: 8000 /, não http: // localhost /. Além disso, apenas certifique-se de que mod_cgi esteja ativado.

    
por 31.07.2012 / 21:00