diff --git a/inc/html.php b/inc/html.php
index 5941a9af25724db023e524a8d4e4d4ceb2566957..928991ae25de7b045ccfedb95b89eadd390f20bf 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -1634,6 +1634,17 @@ function html_debug(){
     print_r($inis);
     print '</pre>';
 
+    if (function_exists('apache_get_version')) {
+        $apache['version'] = apache_get_version();
+
+        if (function_exists('apache_get_modules')) {
+            $apache['modules'] = apache_get_modules();
+        }
+        print '<b>Apache</b><pre>';
+        print_r($apache);
+        print '</pre>';
+    }
+
     print '</body></html>';
 }