これを入れましたhttpd.conf
<VirtualHost *:17501>
ServerName my.server.com
SetEnv GIT_PROJECT_ROOT /var/opt/git/repos
SetEnv GIT_HTTP_EXPORT_ALL
SetEnv REMOTE_USER=$REDIRECT_REMOTE_USER
ScriptAlias /git /usr/libexec/git-core/git-http-backend/
<Directory "/usr/libexec/git-core*">
Options ExecCGI Indexes
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
ポート経由で https アクセスできるようにしたいのです17501
が、リポジトリのパスは/var/opt/git/repos
.
他の変更を加える必要がありますか? 何か案は?