blob: 143fe3be23d254b7bd7fd2b6de79d91da6833d9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<VirtualHost *:80>
ServerName gitserver
DocumentRoot /srv/http/gitweb
Alias /git /srv/http/gitweb
<Directory /srv/http/gitweb>
Options ExecCGI +FollowSymLinks +SymLinksIfOwnerMatch
AllowOverride All
order allow,deny
Allow from all
AddHandler cgi-script cgi
DirectoryIndex gitweb.cgi
</Directory>
</VirtualHost>
|