From e38c568501600ac57e2def08ad2350743e78981d Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Fri, 19 Nov 2021 11:10:06 -0800 Subject: [PATCH] Add skeleton for mod_http2 so it is recognized --- apache/mod_http2.pl | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 apache/mod_http2.pl diff --git a/apache/mod_http2.pl b/apache/mod_http2.pl new file mode 100755 index 000000000..a70b014b4 --- /dev/null +++ b/apache/mod_http2.pl @@ -0,0 +1,8 @@ +# mod_http2.pl + +sub mod_http2_directives +{ +$rv = [ ]; +return &make_directives($rv, $_[0], "mod_http2"); +} +