You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2020/05/21 12:56:06 UTC

svn commit: r1878002 - /httpd/test/framework/trunk/t/conf/extra.conf.in

Author: jorton
Date: Thu May 21 12:56:06 2020
New Revision: 1878002

URL: http://svn.apache.org/viewvc?rev=1878002&view=rev
Log:
Fix t/modules/filter.t tests for the case where MIME config ends
up with ".xml" mapped to text/xml not application/xml.

Modified:
    httpd/test/framework/trunk/t/conf/extra.conf.in

Modified: httpd/test/framework/trunk/t/conf/extra.conf.in
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/conf/extra.conf.in?rev=1878002&r1=1878001&r2=1878002&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/conf/extra.conf.in (original)
+++ httpd/test/framework/trunk/t/conf/extra.conf.in Thu May 21 12:56:06 2020
@@ -854,10 +854,12 @@ LimitRequestFields    32
    <Directory @SERVERROOT@/htdocs/modules/filter/bytype>
       <IfModule mod_deflate.c>
         AddOutputFilterByType DEFLATE application/xml
+        AddOutputFilterByType DEFLATE text/xml
         AddOutputFilterByType DEFLATE text/css
       </IfModule>
       <IfModule mod_case_filter.c>
         AddOutputFilterByType CASEFILTER application/xml
+        AddOutputFilterByType CASEFILTER text/xml
         AddOutputFilterByType CASEFILTER text/plain
       </IfModule>
    </Directory>