Ubuntu 22.04
Sponsored Link

Git : Gitweb インストール2022/09/27

 
Gitweb をインストールして、Web ブラウザー経由で Git リポジトリが参照できるよう設定します。
[1]
[2] Gitweb をインストールします。
root@dlp:~#
apt -y install gitweb
root@dlp:~#
vi /etc/gitweb.conf
# 2行目 : Git リポジトリのルートディレクトリ

$projectroot = "/var/lib/git";
root@dlp:~#
vi /etc/apache2/conf-available/gitweb.conf
Alias /gitweb /usr/share/gitweb

  <Directory /usr/share/gitweb>
    Options +FollowSymLinks +ExecCGI
    AddHandler cgi-script .cgi
    # 必要に応じてアクセス許可 IP 追記
    Require ip 127.0.0.1 10.0.0.0/24
  </Directory>

root@dlp:~#
a2enmod cgi rewrite

root@dlp:~#
systemctl restart apache2

[3] 任意のクライアントコンピューターから [(サーバーのホスト名 または IP アドレス/gitweb/)] に Web アクセスすると Git リポジトリが参照可能です。
関連コンテンツ