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.
23 lines
407 B
Plaintext
23 lines
407 B
Plaintext
12 years ago
|
server.event-handler = "poll"
|
||
|
|
||
|
$HTTP["host"] =~ "whois.cryto.net" {
|
||
|
server.document-root = "/var/apps/whois"
|
||
|
|
||
|
fastcgi.server = ("/" =>
|
||
|
((
|
||
|
"socket" => "/tmp/whoisapp-fcgi.sock",
|
||
|
"bin-path" => "/var/apps/whois/app.fcgi",
|
||
|
"check-local" => "disable",
|
||
|
"max-procs" => 1
|
||
|
))
|
||
|
)
|
||
|
|
||
|
alias.url = (
|
||
|
"/static" => "/var/apps/whois/static"
|
||
|
)
|
||
|
|
||
|
url.rewrite-once = (
|
||
|
"^(/static($|/.*))$" => "$1"
|
||
|
)
|
||
|
}
|