diff options
-rw-r--r-- | cfengine/cf.services.web | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cfengine/cf.services.web b/cfengine/cf.services.web index c67f141..7392235 100644 --- a/cfengine/cf.services.web +++ b/cfengine/cf.services.web @@ -88,7 +88,7 @@ editfiles: # <IfModule libphp4.c> # php_flag display_errors off # php_flag log_errors on - # AddType application/x-httpd-php .php + # AddType application/x-httpd-php .phtml .php .inc .php3 # AddType application/x-httpd-php-source .phps # </IfModule> # @@ -113,8 +113,8 @@ editfiles: BeginGroupIfNoLineMatching ".*php_flag log_errors on" InsertLine " php_flag log_errors on" EndGroup - BeginGroupIfNoLineMatching "[[:blank:]]*AddType application/x-httpd-php .php" - InsertLine " AddType application/x-httpd-php .php" + BeginGroupIfNoLineMatching "[[:blank:]]*AddType application/x-httpd-php .phtml .php .inc .php3" + InsertLine " AddType application/x-httpd-php .phtml .php .inc .php3" EndGroup BeginGroupIfNoLineMatching "[[:blank:]]*AddType application/x-httpd-source .phps" InsertLine " AddType application/x-httpd-source .phps" |