]> git.donarmstrong.com Git - debbugs.git/blob - examples/apache.conf
use /var/log/apache2/ as the default error log location
[debbugs.git] / examples / apache.conf
1 <VirtualHost *>
2     ServerName bugs.debian.org
3     ServerAdmin owner@bugs.debian.org
4     DocumentRoot /var/lib/debbugs/www/
5
6     ErrorLog /var/log/apache2/debbugs-error.log
7     CustomLog /var/log/apache2/debbugs-access.log combined
8
9     <Directory />
10         Options FollowSymLinks
11         AllowOverride None
12     </Directory>
13
14     <Directory /var/lib/debbugs/www>
15         Options -Indexes FollowSymLinks MultiViews
16         AllowOverride Options
17         Order allow,deny
18         allow from all
19     </Directory>
20
21     <Directory /var/lib/debbugs/www/db>
22         AllowOverride Indexes
23     </Directory>
24
25     <Directory /var/lib/debbugs/www/txt>
26         Options +Indexes
27     </Directory>
28
29     ScriptAlias /cgi-bin/ /var/lib/debbugs/www/cgi/
30     <Directory "/var/lib/debbugs/www/cgi/">
31         AllowOverride None
32         Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
33         Order allow,deny
34         Allow from all
35     </Directory>
36
37     RewriteEngine on
38     RewriteCond %{HTTP_USER_AGENT}      .*apt-listbugs.*
39     RewriteRule .*                      /apt-listbugs.html [R,L]
40
41     #  RewriteLog /org/bugs.debian.org/apache-rewrite.log
42     #  RewriteLogLevel 0
43      
44     #RewriteRule ^/$ http://www.debian.org/Bugs/
45     RewriteRule ^/(robots\.txt|release-critical|apt-listbugs\.html)$ - [L]
46     # The following two redirect to up-to-date pages
47     RewriteRule ^/[[:space:]]*#?([[:digit:]][[:digit:]][[:digit:]]+)([;&].+)?$ /cgi-bin/bugreport.cgi?bug=$1$2 [L,R,NE]
48     RewriteRule ^/([^/+]*)([+])([^/]*)$ "/$1%%{%}2B$3" [N]
49     RewriteRule ^/[Ff][Rr][Oo][Mm]:([^/]+\@.+)$ /cgi-bin/pkgreport.cgi?submitter=$1 [L,R,NE]
50     # Commented out, 'cuz aj says it will crash master. (old master)
51     # RewriteRule ^/[Ss][Ee][Vv][Ee][Rr][Ii][Tt][Yy]:([^/]+\@.+)$ /cgi-bin/pkgreport.cgi?severity=$1 [L,R]
52     RewriteRule ^/([^/]+\@.+)$ /cgi-bin/pkgreport.cgi?maint=$1 [L,R,NE]
53     RewriteRule ^/mbox:([[:digit:]][[:digit:]][[:digit:]]+)([;&].+)?$ /cgi-bin/bugreport.cgi?mbox=yes&bug=$1$2 [L,R,NE]
54     RewriteRule ^/src:([^/]+)$ /cgi-bin/pkgreport.cgi?src=$1 [L,R,NE]
55     RewriteRule ^/severity:([^/]+)$ /cgi-bin/pkgreport.cgi?severity=$1 [L,R,NE]
56     RewriteRule ^/tag:([^/]+)$ /cgi-bin/pkgreport.cgi?tag=$1 [L,R,NE]
57     # RewriteMap fix-chars      int:noescape
58     RewriteCond %{REQUEST_URI} ^/(Access\.html|Developer\.html|Reporting\.html|server-request\.html|server-control\.html|server-refcard\.html).* [NC]
59     RewriteRule .* - [L]
60     RewriteRule ^/([0-9]+)$ /cgi-bin/bugreport.cgi?bug=$1 [L,R,NE]
61     RewriteRule ^/([^/]+)$ /cgi-bin/pkgreport.cgi?pkg=$1 [L,R,NE]
62     <IfModule mod_perl.c>
63         <Directory /org/bugs.debian.org/cgi-bin/sql>
64             SetHandler  perl-script
65             PerlHandler Apache::Registry
66             Options +ExecCGI
67         </Directory>
68     </IfModule>
69 </VirtualHost>