1

Gitwebは無視します

SetEnv GIT_PROJECT_ROOT /path/to/user/git

gitでは動作しますが。クローンを作成してリポジトリにプッシュできます。gitwebを有効にすると、各ユーザーはすべてのユーザーリポジトリとその中のコードを見ることができます。

ユーザーごとに個別のGitweb「ページ」を作成するにはどうすればよいですか?

4

1 に答える 1

1

ここでの答えは、gitweb.confファイル(通常は/etc/gitweb.confにあります)の$per_request_config変数にあります。

/ git /がgitリポジトリのルートディレクトリであり、各ユーザーがそのフォルダにディレクトリを持っていると仮定すると、これは次のように機能します。

our $per_request_config = sub {
        $projectroot = "/git/" . $cgi->remote_user;
};

ApacheVhostの設定は次のようになります。

<VirtualHost *:443>
        SSLEngine on
        SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP

        SSLCertificateFile      /ssl/mydomain.com.crt
        SSLCertificateKeyFile   /ssl/mydomain.com.key

        DocumentRoot /git/user
        ServerName user.mydomain.com

        SetEnv GIT_PROJECT_ROOT /git/user
        SetEnv GIT_HTTP_EXPORT_ALL

        <Directory />
          Options ExecCGI +FollowSymLinks +SymLinksIfOwnerMatch
          AuthType Basic
          AuthName "Private Git Access"
          AuthUserFile "/git/git-auth"
          Require valid-user
          AddHandler cgi-script .cgi
          DirectoryIndex gitweb.cgi
        </Directory>

        # This pattern matches git operations and passes them to http-backend
        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

</VirtualHost>

これが、Gitとユーザーを管理するための最も簡単な方法であることがわかりました。

ただし、従来のモデルに従っている場合は、各ユーザーのホームディレクトリにあるフォルダ「git」にリンクできます。

our $per_request_config = sub {
        $projectroot = "/home/" . $cgi->remote_user . "/git/";
};
于 2013-03-07T23:06:23.943 に答える