[HowTo] gitサーバをApacheで公開する手順

2013年3月4日 オフ 投稿者: KYO
Table of Contents

Subversionに続いて、gitサーバを公開する手順の覚書。

  1. Apache、gitの入手

面倒なので、yumでインストール

[code]
yum install -y httpd git
[/code]

※Apacheの設定などは適宜変更します

  1. git向けのApache設定

※あくまで参考までに

[code]

ServerName hoge.com # 適宜変更
Redirect / https://hoge.com/ # 適宜変更


ServerName hoge.com # 適宜変更
ServerAlias hoge.com # 適宜変更
DocumentRoot “/var/git/” # 適宜変更
SetEnv GIT_PROJECT_ROOT /home/git/
SetEnv GIT_HTTP_EXPORT_ALL
# 適宜変更
AllowOverride All
Options Indexes FollowSymLinks Includes ExecCGI MultiViews
order deny,allow
deny from all
Allow from 127.0.0.1
Allow from 192.168.1. # 適宜変更


DAV on
SSLRequireSSL
AuthType Basic
AuthName “git repository”
AuthUserFile /var/htpasswd.git # 適宜変更

Require valid-user



[/code]

設定語、Apacheをリスタート or reload

  1. gitディレクトリの作成

公開するgitサーバのディレクトリの作成と初期化

[code]
mkdir -p /var/git/tutorial.git
cd /var/git/tutorial.git
git –bare init –shared
git update-server-info
chown -R apache. .
[/code]

  1. 確認

https://hoge.com/tutorial.gitへアクセスして、表示確認

問題なければ、pullしたり、pushしたり,fetchしたり・・・

  1. 補足

上記の設定で行くと、証明書(CA)は、俗に言うオレオレ証明書となる。
そのため、以下のコマンドでSSL証明書の確認をキャンセル設定してあげると、うまくいく。

[code]
git config –global –add http.sslVerify false
[/code]

※Windowsの場合は、GitBashから。