From f337f895514e0f9eb5240976e09f18cca161cc14 Mon Sep 17 00:00:00 2001 From: "usman@cyberpersons.com" Date: Sat, 10 Jun 2023 12:40:26 +0500 Subject: [PATCH] add headers module for apache --- ApachController/ApacheController.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApachController/ApacheController.py b/ApachController/ApacheController.py index cca886dc4..6aa2a81cf 100755 --- a/ApachController/ApacheController.py +++ b/ApachController/ApacheController.py @@ -181,7 +181,7 @@ LoadModule mpm_event_module modules/mod_mpm_event.so if ProcessUtilities.executioner(command, None, True) == 0: return "Apache run apache2-suexec-pristine" - command = 'a2enmod suexec proxy ssl proxy_fcgi proxy rewrite' + command = 'a2enmod suexec proxy ssl proxy_fcgi proxy rewrite headers' if ProcessUtilities.executioner(command, None, True) == 0: return "Apache run suexec proxy ssl"