diff --git a/actions/apache b/actions/apache index 9dbe9d957..a888acac9 100755 --- a/actions/apache +++ b/actions/apache @@ -117,6 +117,9 @@ def subcommand_setup(arguments): webserver.enable('rewrite', kind='module') webserver.enable('macro', kind='module') + # Disable /server-status page to avoid leaking private info. + webserver.disable('status', 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 2826ed558..21567731c 100644 --- a/plinth/modules/apache/__init__.py +++ b/plinth/modules/apache/__init__.py @@ -13,7 +13,7 @@ from plinth.modules.firewall.components import Firewall from plinth.modules.letsencrypt.components import LetsEncrypt from plinth.utils import format_lazy -version = 7 +version = 8 is_essential = True