Merge branch 'master' of ssh://repo.or.cz/srv/git/girocco
[girocco/susan.git] / apache.conf
blobbb7f642c88fda49ec23c991135b3ce9ffb2598de
1 # This is example configuration of a virtualhost running Girocco, as set up
2 # at repo.or.cz; unfortunately, completely independent from Girocco::Config.
3 # It is not essential for Girocco to use a special virtualhost, however.
4 <VirtualHost *:80>
5         ServerName repo.or.cz
6         ServerAlias www.repo.or.cz
7         ServerAdmin pasky@suse.cz
8         
9         ErrorLog /var/log/apache2/repo-error.log
10         CustomLog /var/log/apache2/repo-access.log combined
11         
12         DocumentRoot /home/repo/WWW
13         <Directory /home/repo/WWW>
14                 Options Indexes FollowSymLinks MultiViews ExecCGI
15                 AllowOverride All
16                 Order allow,deny
17                 allow from all
18                 DirectoryIndex gitweb.cgi
19         </Directory>
20         
21         ScriptAlias /w /home/repo/WWW/gitweb.cgi
22         ScriptAlias /h /home/repo/WWW/html.cgi
23 </VirtualHost>