概要
前回gitリポジトリを公開したけど、gitコマンドでclone/pull/push出来るだけで、httpsなのにブラウザから直接見ることが出来なかった。
今回はリポジトリに格納されてるソースをWebで直に見れるようにしてみる。
Web UIの選択
最大手は
の2つ。この辺になるともう見た目GitHubと遜色がないし、とても多機能。しかし、VALUE-SERVERのCGIでは動かない。そこで今回はVALUE-SERVERで最も力を入れてそうな「PHP」でgitのWeb UIを選んでみた。その結果…
GitList
を入れてみることにしました。
https://gitlist.org/
インストール
先のリンクからダウンロードは出来るものの、インストール方法はこちらの方が詳しい
https://github.com/klaussilveira/gitlist#installation
ダウンロード
最初のリンク先からダウンロード
展開
$ cd $HOME/public_html/(ドメイン)/
$ tar xvfz ダウンロードしたファイルのフルパス
キャッシュディレクトリの作成
$ cd gitlist
$ mkdir cache
設定ファイルの編集
$ cp -p config.ini-example config.ini
config.iniを以下のように編集
--- config.ini-example 2019-04-26 02:51:27.000000000 +0900
+++ config.ini 2020-01-31 10:15:55.815297245 +0900
@@ -1,7 +1,7 @@
[git]
client = '/usr/bin/git' ; Your git executable path
default_branch = 'master' ; Default branch when HEAD is detached
-repositories[] = '/home/git/repositories/' ; Path to your repositories
+repositories[] = '(ホーム)/(リポジトリの場所)/' ; Path to your repositories
; If you wish to add more repositories, just add a new line
; WINDOWS USERS
@@ -28,10 +28,10 @@
ssh_user_dynamic = false ; when enabled, ssh_user is set to $_SERVER['PHP_AUTH_USER']
; http remote
-show_http_remote = false ; display remote URL for HTTP
+show_http_remote = true ; display remote URL for HTTP
http_host = '' ; host to use for cloning via HTTP (default: none => uses gitlist web host)
use_https = true ; generate URL with https://
-http_url_subdir = 'git/' ; if cloning via HTTP is triggered using virtual dir (e.g. https://example.com/git/repo.git)
+http_url_subdir = 'gitrepos/git-http-backend.cgi/' ; if cloning via HTTP is triggered using virtual dir (e.g. https://example.com/git/repo.git)
; has to end with trailing slash
http_user = '' ; user to use for cloning via HTTP (default: none)
http_user_dynamic = false ; when enabled, http_user is set to $_SERVER['PHP_AUTH_USER']
確認
以下に設置されたことになる。
https://elephantcat.work/gitlist/
動いてるみたい。
VALUE SERVERでは動いてましたが、今はConoHa VPSに移行し、Giteaを導入したので消しています。
https://git.elephantcat.work/