package Book::Example; use Apache::Constants qw(OK); sub handler { my $r = shift; $r->send_http_header('text/plain'); print "You are OK ", $r->get_remote_host, "\n"; return OK; } 1;