diff options
Diffstat (limited to 'debian/perl-framework/t/htdocs/modules/h2/hello.pl')
-rwxr-xr-x | debian/perl-framework/t/htdocs/modules/h2/hello.pl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/perl-framework/t/htdocs/modules/h2/hello.pl b/debian/perl-framework/t/htdocs/modules/h2/hello.pl new file mode 100755 index 0000000..688b102 --- /dev/null +++ b/debian/perl-framework/t/htdocs/modules/h2/hello.pl @@ -0,0 +1,13 @@ +#!/usr/bin/env perl + +use Env; + +print "Content-Type: text/html\n"; +print "\n"; + +#my $ssl_protocol = $ENV{'SSL_TLS_SNI'}; +print <<EOF +<html><body> +<h2>Hello World!</h2> +</body></html> +EOF |