git http-backend基于centos7 httpd

需要用户名密码的访问,网上已经有人分享了, 如果想看,需要用户名密码的访问请出门右转
https://www.cnblogs.com/badwood316/p/6398616.html

这里的配置是一种不需要用户名密码,同时可以glone的方式

git仓库集合所在的地址是 /var/www/html/git-repository.
/etc/httpd/conf/httpd.conf 结尾加入下面配置

<VirtualHost *:80>
   SetEnv GIT_PROJECT_ROOT /var/www/html/git-repository/
   SetEnv GIT_HTTP_EXPORT_ALL  
   ScriptAlias /git-repository/ /usr/libexec/git-core/git-http-backend/
   
    Options ExecCGI Indexes
    Order allow,deny
    Allow from all
    Require all granted
   Directory>
VirtualHost >

你可能感兴趣的:(linux系统相关)