summaryrefslogtreecommitdiffstats
path: root/debian/vendor-h2o/t/assets/doc_root/hello.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'debian/vendor-h2o/t/assets/doc_root/hello.cgi')
-rwxr-xr-xdebian/vendor-h2o/t/assets/doc_root/hello.cgi13
1 files changed, 0 insertions, 13 deletions
diff --git a/debian/vendor-h2o/t/assets/doc_root/hello.cgi b/debian/vendor-h2o/t/assets/doc_root/hello.cgi
deleted file mode 100755
index 4401481..0000000
--- a/debian/vendor-h2o/t/assets/doc_root/hello.cgi
+++ /dev/null
@@ -1,13 +0,0 @@
-#! /usr/bin/env perl
-
-use strict;
-use warnings;
-use CGI;
-
-my $q = CGI->new;
-
-print $q->header("text/plain; charset=utf-8");
-print "Hello ", $q->param("name") || "unknown";
-
-close STDOUT;
-print STDERR "hello.cgi is shutting down\n";