File: lighttpd-dhelp.conf

package info (click to toggle)
dhelp 0.6.32
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 604 kB
  • sloc: ruby: 1,171; sh: 555; perl: 372; makefile: 77
file content (40 lines) | stat: -rw-r--r-- 1,293 bytes parent folder | download | duplicates (5)
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
## 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.