#!/usr/bin/perl
__PACKAGE__->run;
exit
;
sub
default_server_type {
'PreFork'
}
sub
default_port {
'8080'
}
sub
configure_hook {
my
$self
=
shift
;
my
$prop
=
$self
->{
'server'
};
my
$root
=
$self
->{
'server_root'
} ||=
"/var/www"
;
$self
->{document_root} =
"$root/htdocs"
;
$self
->{default_index} = [
qw(index.html index.htm main.htm)
];
$self
->{access_log} =
"$root/access.log"
;
$self
->{mime_types} = {
html
=>
'text/html'
,
htm
=>
'text/html'
,
gif
=>
'image/gif'
,
jpg
=>
'image/jpeg'
,
};
$self
->{mime_default} =
'text/plain'
;
}
sub
post_configure_hook {
my
$self
=
shift
;
open
(ACCESS,
">>"
.
$self
->{access_log}) ||
die
"Couldn't open ACCESS: $!"
;
my
$old
=
select
ACCESS;
$| = 1;
select
$old
;
}
sub
send_error {
my
(
$self
,
$n
,
$msg
) =
@_
;
$self
->send_status(
$n
);
print
"Content-type: text/html\r\n\r\n"
;
print
"<h1>Error $n</h1><h3>$msg</h3>"
;
}
sub
process_http_request {
my
$self
=
shift
;
my
$uri
=
$ENV
{
'PATH_INFO'
} ||
''
;
if
(
$uri
=~ /[\ \;]/) {
return
$self
->send_error(400,
"Malformed URL"
);
}
$uri
=~ s/%(\w\w)/
chr
(
hex
($1))/eg;
1
while
$uri
=~ s|^\.\./+||;
my
$path
=
"$self->{document_root}$uri"
;
if
(-d
$path
) {
my
$_path
;
foreach
(@{
$self
->{
'default_index'
} }){
next
if
!-e
"$path/$_"
;
$_path
=
"$path/$_"
;
last
;
}
$path
=
$_path
||
return
$self
->send_error(403,
"Directory listing not supported"
);
}
if
(! -e
$path
) {
warn
"File not found: $path\n"
;
return
$self
->send_error(404,
"File Not Found"
);
}
open
(
my
$fh
,
'<'
,
$path
) ||
return
$self
->send_501(
"Can't open file [$!]"
);
my
$type
=
$path
=~ /([^\.]+)$/ ? $1 :
''
;
$type
=
$self
->{
'mime_types'
}->{
$type
} ||
$self
->{
'mime_default'
};
print
"Content-type: $type\r\n\r\n"
;
print
$_
while
read
$fh
,
$_
, 8192;
close
$fh
;
}
1;