You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
508 B
Plaintext
16 lines
508 B
Plaintext
#### handle Debian Policy Manual, Section 11.5. urls
|
|
## by default allow them only from localhost
|
|
$HTTP["remoteip"] =~ "^127\.0\.0\.1$|^::1$" {
|
|
alias.url += (
|
|
"/cgi-bin/" => "/usr/lib/cgi-bin/",
|
|
"/doc/" => "/usr/share/doc/",
|
|
"/images/" => "/usr/share/images/"
|
|
)
|
|
$HTTP["url"] =~ "^/doc/|^/images/" {
|
|
dir-listing.activate = "enable"
|
|
}
|
|
$HTTP["url"] =~ "^/cgi-bin/" {
|
|
cgi.assign = ( "" => "" )
|
|
}
|
|
}
|