Return to nph-status.pl CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / lighttpd / tests / docroot / www |
lighttpd 1.4.41
#!/usr/bin/env perl my $status = 200; if (defined $ENV{"QUERY_STRING"}) { $status = $ENV{"QUERY_STRING"}; } print "HTTP/1.0 ".$status." FooBar\r\n"; print "\r\n";