diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2016-12-30 22:04:05 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2016-12-30 22:04:05 +0100 |
commit | 1c13f557b64f3f2aabd7665d76001704a354229e (patch) | |
tree | 0bccad6f6feb2ed78e4786b3da4b8a3441293b28 | |
parent | Whitespace fixes. (diff) | |
download | apache-1c13f557b64f3f2aabd7665d76001704a354229e.tar.gz apache-1c13f557b64f3f2aabd7665d76001704a354229e.tar.bz2 apache-1c13f557b64f3f2aabd7665d76001704a354229e.zip |
Added 41_mod_http2.conf to apache-2.4 modules.d directory.
-rw-r--r-- | 2.4/conf/modules.d/41_mod_http2.conf | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2.4/conf/modules.d/41_mod_http2.conf b/2.4/conf/modules.d/41_mod_http2.conf new file mode 100644 index 0000000..aac7504 --- /dev/null +++ b/2.4/conf/modules.d/41_mod_http2.conf @@ -0,0 +1,9 @@ +<IfDefine SSL> + <IfModule http2_module> + # enable logging for this module + LogLevel http2:info + + #Enable HTTP/2 support + Protocols h2 h2c http/1.1 + </IfModule> +</IfDefine> |