This file is indexed.

/usr/share/doc/debbugs/examples/apache.conf is in debbugs 2.6.0.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# -*- mode: apache; -*-
<VirtualHost *>
    ServerName bugs.debian.org
    ServerAdmin owner@bugs.debian.org
    DocumentRoot /var/lib/debbugs/www/

    ErrorLog /var/log/apache2/debbugs-error.log
    CustomLog /var/log/apache2/debbugs-access.log combined

    <Directory /var/lib/debbugs/www>
	    Options Indexes SymLinksIfOwnerMatch MultiViews
	    DirectoryIndex index.en.html
	    Require all granted
    </Directory>

    ScriptAlias /cgi-bin/ /var/lib/debbugs/www/cgi/
    <Directory "/var/lib/debbugs/www/cgi/">
        AllowOverride None
        Options ExecCGI SymLinksIfOwnerMatch
	    Require all granted
    </Directory>

    RewriteEngine on
    RewriteCond %{HTTP_USER_AGENT}	.*apt-listbugs.*
    RewriteRule .*			/apt-listbugs.html [R,L]

    #  RewriteLog /org/bugs.debian.org/apache-rewrite.log
    #  RewriteLogLevel 0
     
    #RewriteRule ^/$ http://www.debian.org/Bugs/
    RewriteRule ^/(robots\.txt|release-critical|apt-listbugs\.html)$ - [L]
    # The following two redirect to up-to-date pages
    RewriteRule ^/[[:space:]]*#?([[:digit:]][[:digit:]][[:digit:]]+)([;&].+)?$ /cgi-bin/bugreport.cgi?bug=$1$2 [L,R,NE]
    RewriteRule ^/([^/+]*)([+])([^/]*)$ "/$1%%{%}2B$3" [N]
    RewriteRule ^/[Ff][Rr][Oo][Mm]:([^/]+\@.+)$ /cgi-bin/pkgreport.cgi?submitter=$1 [PT,NE]
    # Commented out, 'cuz aj says it will crash master. (old master)
    # RewriteRule ^/[Ss][Ee][Vv][Ee][Rr][Ii][Tt][Yy]:([^/]+\@.+)$ /cgi-bin/pkgreport.cgi?severity=$1 [L,R]
    RewriteRule ^/([^/]+\@.+)$ /cgi-bin/pkgreport.cgi?maint=$1 [PT,NE]
    RewriteRule ^/mbox:([[:digit:]][[:digit:]][[:digit:]]+)([;&].+)?$ /cgi-bin/bugreport.cgi?mbox=yes&bug=$1$2 [PT,NE]
    RewriteRule ^/src:([^/]+)$ /cgi-bin/pkgreport.cgi?src=$1 [PT,NE]
    RewriteRule ^/severity:([^/]+)$ /cgi-bin/pkgreport.cgi?severity=$1 [PT,NE]
    RewriteRule ^/tag:([^/]+)$ /cgi-bin/pkgreport.cgi?tag=$1 [PT,NE]
    # RewriteMap fix-chars	int:noescape
    RewriteCond %{REQUEST_URI} ^/(Access\.html|Developer\.html|Reporting\.html|server-request\.html|server-control\.html|server-refcard\.html).* [NC]
    RewriteRule .* - [L]
    # PT|passthrough to bugreport.cgi and pkgreport.cgi
    RewriteRule ^/([0-9]+)$ /cgi-bin/bugreport.cgi?bug=$1 [PT,NE]
    RewriteRule ^/([^/]+)$ /cgi-bin/pkgreport.cgi?pkg=$1 [PT,NE]
</VirtualHost>