Am 07.02.24 um 11:31 schrieb jor...@apache.org:
Author: jorton
Date: Wed Feb 7 10:31:56 2024
New Revision: 1915618
URL: http://svn.apache.org/viewvc?rev=1915618&view=rev
Log:
Missed in r1915617 - updated test case for PR 64339.
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=1915618&r1=1915617&r2=1915618&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/conf/extra.conf.in (original)
+++ httpd/test/framework/trunk/t/conf/extra.conf.in Wed Feb 7 10:31:56 2024
@@ -1518,17 +1518,22 @@ LimitRequestFields 32
<IfModule mod_xml2enc.c>
<IfModule mod_proxy_html.c>
<IfModule mod_proxy.c>
- ProxyPass /modules/xml2enc/front
http://@SERVERNAME@:@PORT@/modules/xml2enc/back
Alias /modules/xml2enc/back @SERVERROOT@/htdocs/modules/xml2enc
+ Alias /modules/xml2enc/back/iso @SERVERROOT@/htdocs/modules/xml2enc
I get
AH00671: The Alias directive in t/conf/extra.conf at line 1605 will
probably never match because it overlaps an earlier Alias.
for every unit test run. And it seems the URI with /iso at the end is
not being used currently? Maybe unfinished work or we might remove the
additional Alias line?
<Location /modules/xml2enc/back>
- AddType application/notreallyxml notml
+ AddType application/foo+xml fooxml
+ AddType application/notreallyxml notxml
AddType application/xml xml
- AddType application/foo+xml foo
+ AddType text/html isohtml
+ AddCharset ISO-8859-1 .isoxml
+ AddCharset ISO-8859-1 .isohtml
</Location>
<Location /modules/xml2enc/front>
ProxyHTMLEnable on
# mod_proxy_html needs some configuration.
- ProxyHTMLURLMap /foo /bar
+ ProxyHTMLURLMap / /blah
+ ProxyHTMLLinks a href
+ ProxyPass http://@SERVERNAME@:@PORT@/modules/xml2enc/back
</Location>
</IfModule>
</IfModule>
Best regards,
Rainer