gitweb on Apache2

安装应用
sudo apt-get install apache2
sudo apt-get install gitweb


vi /etc/apache2/conf.d/gitweb
Alias /gitweb /usr/share/gitweb

<Directory /usr/share/gitweb>
  Options FollowSymLinks +ExecCGI
  AddHandler cgi-script .cgi
</Directory>


访问
http://localhost:80/gitweb/

你可能感兴趣的:(apache,cgi,gitweb)