diff --git a/actions/apache b/actions/apache index 6b64c95c6..fc0c06e29 100755 --- a/actions/apache +++ b/actions/apache @@ -126,6 +126,9 @@ def subcommand_setup(arguments): # Disable /server-status page to avoid leaking private info. webserver.disable('status', kind='module') + # Enable HTTP/2 protocol + webserver.enable('http2', kind='module') + # switch to mod_ssl from mod_gnutls webserver.disable('gnutls', kind='module') webserver.enable('ssl', kind='module') diff --git a/plinth/modules/apache/__init__.py b/plinth/modules/apache/__init__.py index b093c5c59..87e7dbbc5 100644 --- a/plinth/modules/apache/__init__.py +++ b/plinth/modules/apache/__init__.py @@ -14,7 +14,7 @@ from plinth.modules.firewall.components import Firewall from plinth.modules.letsencrypt.components import LetsEncrypt from plinth.utils import format_lazy, is_valid_user_name -version = 8 +version = 9 is_essential = True