summaryrefslogtreecommitdiff
path: root/changes-entries
diff options
context:
space:
mode:
authorEric Covener <covener@apache.org>2023-03-19 21:33:35 +0000
committerEric Covener <covener@apache.org>2023-03-19 21:33:35 +0000
commit11d58d4a43939ccd6f0ab3e4bf762c6a9bc8e0a7 (patch)
tree7a9585526ed4b54411bf355a361e714ee2f06b84 /changes-entries
parenta356fdbfb93c59a4e359f0a81b38aef31ddd856e (diff)
downloadhttpd-11d58d4a43939ccd6f0ab3e4bf762c6a9bc8e0a7.tar.gz
Merge r1907505, r1908186 from trunk:
* In the reverse proxy case r->filename might contain a query string if the nocanon option was used with ProxyPass. If this is the case cut off the query string as the last parameter in this query string might end up on an extension we take care about, but we only want to match against path components not against query parameters. * Add CHANGES entry for r1907505 [skip ci] Reviewed By: rpluem, ylavic, covener git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1908538 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'changes-entries')
-rw-r--r--changes-entries/mod_mime_nocanon.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/changes-entries/mod_mime_nocanon.txt b/changes-entries/mod_mime_nocanon.txt
new file mode 100644
index 0000000000..8ebf1a9b01
--- /dev/null
+++ b/changes-entries/mod_mime_nocanon.txt
@@ -0,0 +1,4 @@
+
+ *) mod_mime: Do not match the extention against possible query string
+ parameters in case ProxyPass was used with the nocanon option.
+ [Ruediger Pluem]