You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2022/01/19 13:01:52 UTC

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

Author: covener
Date: Wed Jan 19 13:01:51 2022
New Revision: 1897203

URL: http://svn.apache.org/viewvc?rev=1897203&view=rev
Log:
hello-world test for mod_sed

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=1897203&r1=1897202&r2=1897203&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/conf/extra.conf.in (original)
+++ httpd/test/framework/trunk/t/conf/extra.conf.in Wed Jan 19 13:01:51 2022
@@ -1456,3 +1456,19 @@ LimitRequestFields    32
 	</IfModule>
 </IfModule>
 
+#
+# t/modules/sed.t test config
+#
+<IfModule mod_sed.c>
+  AliasMatch /apache/sed/[^/]+/(.*) @DocumentRoot@/$1
+
+  <Location /apache/sed/>
+    AddOutputFilter sed .html
+  </Location>
+
+  <Location /apache/sed/out-foo>
+      OutputSed "s/foo/bar/g"
+  </Location>
+</IfModule>
+
+