IndicHosts.net

Well-Known Member
Mar 11, 2006
75
30
168
Online
cPanel Access Level
Root Administrator
We have http2 enabled in EA4. Now a client has requested it be disabled for his account / domains as http2+LetsEncrypt gives a blank page on mobile-safari browser (all iOS devices).

Please suggest how to achieve this?
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,267
463
Hello,

It's enabled globally by default after you install the RPM:

Code:
# cat /etc/apache2/conf.d/http2.conf
<IfModule http2_module>
    LogLevel http2:info
    Protocols h2 h2c http/1.1
</IfModule>
However, you can customize it's configuration for individual virtual hosts using the information at:

mod_http2 - Apache HTTP Server Version 2.4

Here's a link with instructions on how to modify individual virtual hosts:

Modify Apache Virtual Hosts with Include Files - EasyApache 4 - cPanel Documentation

Thank you.