This file is indexed.

/etc/lighttpd/conf-available/95-dhelp.conf is in dhelp 0.6.25.

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
## dhelp-enable configuration snippet; enabled by dhelp postinst.
## Note that the # in the dependency line, below, is _required_.

# -*- depends: cgi, debian-doc -*-

## The stated dependencies above provide all dhelp needs. If however
## you want to create a custom configuration, the dhelp requirements
## are given below, commented out:
#
#server.modules += ( "mod_cgi" )
#
#$HTTP["url"] =~ "^/cgi-bin/" {
#        cgi.assign = ( "" => "" )
#}
#
## by default allow access only from localhost
#$HTTP["remoteip"] =~ "^127\.0\.0\.1$|^::1$" {
#        alias.url += (
#        "/cgi-bin/" => "/usr/lib/cgi-bin/",
#        "/doc/" => "/usr/share/doc/",
#        )
#        $HTTP["url"] =~ "^/doc/" {
#                dir-listing.activate = "enable"
#        }
#        $HTTP["url"] =~ "^/cgi-bin/" {
#                cgi.assign = ( "" => "" )
#        }
#}
#
## If you do not want to enable full access to /usr/share/doc, then
## replace the "/doc/" => ... line, with these:
#
#        "/doc/HTML/" => "/usr/share/doc/HTML/",
#        "/doc/dhelp/css/" => "/usr/share/doc/dhelp/css/",
#
## You will then need one more alias line *for each* document linked
## by dhelp's document index pages, else the links will return error.
##
## See /usr/share/doc/dhelp/README.debian for more information.