diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-01-22 16:25:59 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-01-22 16:25:59 +0000 |
commit | b5c80e1c48456f436671194e25144066bfab1af5 (patch) | |
tree | ba776cdfe6c2711cb1a5f8b1a49fc74ca641c3df | |
parent | Enable SSL, configure for gentoobrowse (diff) | |
download | config-b5c80e1c48456f436671194e25144066bfab1af5.tar.bz2 config-b5c80e1c48456f436671194e25144066bfab1af5.tar.xz config-b5c80e1c48456f436671194e25144066bfab1af5.zip |
Enable http/2.0
-rw-r--r-- | etc/apache/httpd.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/etc/apache/httpd.conf b/etc/apache/httpd.conf index 3dfd7c5..e7986f0 100644 --- a/etc/apache/httpd.conf +++ b/etc/apache/httpd.conf @@ -19,6 +19,7 @@ KeepAlive On MaxKeepAliveRequests 100 KeepAliveTimeout 15 ServerSignature On +Protocols h2 h2c http/1.1 LoadModule authz_core_module modules/mod_authz_core.so LoadModule authn_core_module modules/mod_authn_core.so @@ -49,6 +50,7 @@ LoadModule cache_disk_module modules/mod_cache_disk.so LoadModule status_module modules/mod_status.so LoadModule ssl_module modules/mod_ssl.so LoadModule socache_shmcb_module modules/mod_socache_shmcb.so +LoadModule http2_module modules/mod_http2.so CacheRoot "/var/cache/apache2/" CacheEnable disk / |