gitweb在ubuntu上的配置
首先安装:$ sudo apt-get install gitwebgitweb.cgi 脚本安装在 /usr/lib/cgi-bin/ 中,该目录为默认 ubuntu 上 apache2 的 cgi-bin 目录。所以,打开:http://localhost/cgi-bin/g
·
首先安装:
$ sudo apt-get install gitweb
gitweb.cgi 脚本安装在 /usr/lib/cgi-bin/ 中,该目录为默认 ubuntu 上 apache2 的 cgi-bin 目录。所以,打开:
http://localhost/cgi-bin/gitweb.cgi
默认没有 css 加载,把 gitweb 要用的静态文件连接到 DocumentRoot 下:
$ cd /var/www/
$ sudo ln -s /usr/share/gitweb/* .
修改配置:
$ sudo vi /etc/gitweb.conf
将 $projectroot 改为存放各个 .git 的目录。保存后刷新浏览器。
Related Posts
如果没有找到项目,你需要将projectroot/*.git 的属性改为755,让apache用户有可读权限。可以只改你需要让别人通过web访问的那个git。
http://localhost/cgi-bin/gitweb.cgi
/etc/gitweb.conf 内容:
# path to git projects (<project>.git)
$projectroot = "/var/git/repositories";
# directory to use for temp files
$git_temp = "/tmp";
# target of the home link on top of all pages
#$home_link = $my_uri || "/";
# html text to include at home page
$home_text = "indextext.html";
# file with project list; by default, simply scan the projectroot dir.
$projects_list = $projectroot;
# stylesheet to use
$stylesheet = "/gitweb/gitweb.css";
# logo to use
$logo = "/gitweb/git-logo.png";
# the 'favicon'
$ sudo apt-get install gitweb
gitweb.cgi 脚本安装在 /usr/lib/cgi-bin/ 中,该目录为默认 ubuntu 上 apache2 的 cgi-bin 目录。所以,打开:
http://localhost/cgi-bin/gitweb.cgi
默认没有 css 加载,把 gitweb 要用的静态文件连接到 DocumentRoot 下:
$ cd /var/www/
$ sudo ln -s /usr/share/gitweb/* .
修改配置:
$ sudo vi /etc/gitweb.conf
将 $projectroot 改为存放各个 .git 的目录。保存后刷新浏览器。
Related Posts
如果没有找到项目,你需要将projectroot/*.git 的属性改为755,让apache用户有可读权限。可以只改你需要让别人通过web访问的那个git。
http://localhost/cgi-bin/gitweb.cgi
/etc/gitweb.conf 内容:
# path to git projects (<project>.git)
$projectroot = "/var/git/repositories";
# directory to use for temp files
$git_temp = "/tmp";
# target of the home link on top of all pages
#$home_link = $my_uri || "/";
# html text to include at home page
$home_text = "indextext.html";
# file with project list; by default, simply scan the projectroot dir.
$projects_list = $projectroot;
# stylesheet to use
$stylesheet = "/gitweb/gitweb.css";
# logo to use
$logo = "/gitweb/git-logo.png";
# the 'favicon'
$favicon = "/gitweb/git-favicon.png";
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)