]> git.pld-linux.org Git - packages/cvsweb.git/blob - cvsweb-httpd.conf
- migrate to apache 2.4
[packages/cvsweb.git] / cvsweb-httpd.conf
1
2 <Directory /usr/share/cvsweb>
3         AllowOverride None
4         Require all granted
5 </Directory>
6
7 # Version1 (default): under /cgi-bin/cvsweb.cgi address
8 ScriptAlias /cgi-bin/cvsweb.cgi /usr/lib/cgi-bin/cvsweb.cgi
9 Alias /cvsweb/ /usr/share/cvsweb/
10
11 <Location /cgi-bin/cvsweb.cgi>
12         Require all granted
13
14         # See also $charset in cvsweb.conf.
15         #AddDefaultCharset UTF-8
16
17         # if using apache2 mod_perl:
18 #       <IfModule mod_perl.c>
19 #               SetHandler perl-script
20 #               PerlResponseHandler ModPerl::Registry
21 #               PerlOptions +ParseHeaders
22 #               Options ExecCGI
23 #       </IfModule>
24 </Location>
25
26 # Version 2: cvsweb as handler to whole vhost:
27 #<VirtualHost *:80>
28 #       ServerName cvs
29 #
30 #       Alias /cvsweb/ /usr/share/cvsweb/
31 #       DocumentRoot /usr/lib/cgi-bin/cvsweb.cgi
32 #       <Location />
33 #               Options ExecCGI
34 #               Require all granted
35 #       </Location>
36 #</VirtualHost>
This page took 0.086337 seconds and 3 git commands to generate.