TinyCore学习笔记_apache2配置gitweb

TinyCore运行内存小,很适合做gitweb,于是我摸索了两天,终于弄出来了~


1.

$ tc-load -wi git.tcz

$ tc-load -wi apache2.tcz


2.

#gitweb的配置文件

# mkdir -p /var/www

$ ln -sf /usr/local/share/gitweb /var/www/gitweb

$ vi /usr/local/apache2/conf/httpd.conf

ServerName localhost
DocumentRoot "/var/www/gitweb"
<Directory /var/www/gitweb>
        Options +ExecCGI +FollowSymLinks
        AllowOverride All
        order allow,deny
        allow from all
        AddHandler cgi-script cgi
        DirectoryIndex gitweb.cgi
</Directory>

3.

#gitweb的创库都放在 ~/gitweb

$ cd ~ ; mkdir gitweb; cd gitweb

$ vi /etc/gitweb.conf

$projectroot="/home/用户名/gitweb"


4.

#重启apache2

$ sudo apachectl -k restart


5.

#网页上直接访问

localhost

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。