]> git.donarmstrong.com Git - debbugs.git/blob - examples/apache.conf
use + for symlinks and multiviews; newer apache doesn't like it otherwise
[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     ScriptAlias /cgi-bin/ /var/lib/debbugs/www/cgi/
22     <Directory "/var/lib/debbugs/www/cgi/">
23         AllowOverride None
24         Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
25         Order allow,deny
26         Allow from all
27     </Directory>
28
29     RewriteEngine on
30     RewriteCond %{HTTP_USER_AGENT}      .*apt-listbugs.*
31     RewriteRule .*                      /apt-listbugs.html [R,L]
32
33     #  RewriteLog /org/bugs.debian.org/apache-rewrite.log
34     #  RewriteLogLevel 0
35      
36     #RewriteRule ^/$ http://www.debian.org/Bugs/
37     RewriteRule ^/(robots\.txt|release-critical|apt-listbugs\.html)$ - [L]
38     # The following two redirect to up-to-date pages
39     RewriteRule ^/[[:space:]]*#?([[:digit:]][[:digit:]][[:digit:]]+)([;&].+)?$ /cgi-bin/bugreport.cgi?bug=$1$2 [L,R,NE]
40     RewriteRule ^/([^/+]*)([+])([^/]*)$ "/$1%%{%}2B$3" [N]
41     RewriteRule ^/[Ff][Rr][Oo][Mm]:([^/]+\@.+)$ /cgi-bin/pkgreport.cgi?submitter=$1 [L,R,NE]
42     # Commented out, 'cuz aj says it will crash master. (old master)
43     # RewriteRule ^/[Ss][Ee][Vv][Ee][Rr][Ii][Tt][Yy]:([^/]+\@.+)$ /cgi-bin/pkgreport.cgi?severity=$1 [L,R]
44     RewriteRule ^/([^/]+\@.+)$ /cgi-bin/pkgreport.cgi?maint=$1 [L,R,NE]
45     RewriteRule ^/mbox:([[:digit:]][[:digit:]][[:digit:]]+)([;&].+)?$ /cgi-bin/bugreport.cgi?mbox=yes&bug=$1$2 [L,R,NE]
46     RewriteRule ^/src:([^/]+)$ /cgi-bin/pkgreport.cgi?src=$1 [L,R,NE]
47     RewriteRule ^/severity:([^/]+)$ /cgi-bin/pkgreport.cgi?severity=$1 [L,R,NE]
48     RewriteRule ^/tag:([^/]+)$ /cgi-bin/pkgreport.cgi?tag=$1 [L,R,NE]
49     # RewriteMap fix-chars      int:noescape
50     RewriteCond %{REQUEST_URI} ^/(Access\.html|Developer\.html|Reporting\.html|server-request\.html|server-control\.html|server-refcard\.html).* [NC]
51     RewriteRule .* - [L]
52     RewriteRule ^/([0-9]+)$ /cgi-bin/bugreport.cgi?bug=$1 [L,R,NE]
53     RewriteRule ^/([^/]+)$ /cgi-bin/pkgreport.cgi?pkg=$1 [L,R,NE]
54     <IfModule mod_perl.c>
55         <Directory /org/bugs.debian.org/cgi-bin/sql>
56             SetHandler  perl-script
57             PerlHandler Apache::Registry
58             Options +ExecCGI
59         </Directory>
60     </IfModule>
61 </VirtualHost>