mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-15 13:21:20 +00:00
Changelog:
Changes with Apache 2.4.57
*) mod_proxy: Check before forwarding that a nocanon path has not been
rewritten with spaces during processing. [Yann Ylavic]
*) mod_proxy: In case that AllowEncodedSlashes is set to NoDecode do not
double encode encoded slashes in the URL sent by the reverse proxy to the
backend. [Ruediger Pluem]
*) mod_http2: fixed a crash during connection termination. See PR 66539.
[Stefan Eissing]
*) mod_rewrite: Fix a 2.4.56 regression for substitutions ending
in a question mark. PR66547. [Eric Covener]
*) mod_rewrite: Add "BCTLS" and "BNE" RewriteRule flags. Re-allow encoded
characters on redirections without the "NE" flag.
[Yann Ylavic, Eric Covener]
*) mod_proxy: Fix double encoding of the uri-path of the request forwarded
to the origin server, when using mapping=encoded|servlet. [Yann Ylavic]
*) mod_mime: Do not match the extention against possible query string
parameters in case ProxyPass was used with the nocanon option.
[Ruediger Pluem]
New patch:
0011-modules-mappers-config9.m4-Add-server-directory-to-i.patch
Accepted in upstream, expected to be removed at next apache2 2.4.58 update.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 0b9305faa29f6e26871e7662391efbaae4ae92d9)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From 5c9257fa34335ff83f7c01581cf953111072a457 Mon Sep 17 00:00:00 2001
|
|
From: Valeria Petrov <valeria.petrov@spinetix.com>
|
|
Date: Tue, 18 Apr 2023 15:38:53 +0200
|
|
Subject: [PATCH] * modules/mappers/config9.m4: Add 'server' directory to
|
|
include path if mod_rewrite is enabled.
|
|
|
|
Upstream-Status: Accepted [https://svn.apache.org/viewvc?view=revision&revision=1909241]
|
|
|
|
---
|
|
modules/mappers/config9.m4 | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/modules/mappers/config9.m4 b/modules/mappers/config9.m4
|
|
index 55a97ab993..7120b729b7 100644
|
|
--- a/modules/mappers/config9.m4
|
|
+++ b/modules/mappers/config9.m4
|
|
@@ -14,6 +14,11 @@ APACHE_MODULE(userdir, mapping of requests to user-specific directories, , , mos
|
|
APACHE_MODULE(alias, mapping of requests to different filesystem parts, , , yes)
|
|
APACHE_MODULE(rewrite, rule based URL manipulation, , , most)
|
|
|
|
+if test "x$enable_rewrite" != "xno"; then
|
|
+ # mod_rewrite needs test_char.h
|
|
+ APR_ADDTO(INCLUDES, [-I\$(top_builddir)/server])
|
|
+fi
|
|
+
|
|
APR_ADDTO(INCLUDES, [-I\$(top_srcdir)/$modpath_current])
|
|
|
|
APACHE_MODPATH_FINISH
|
|
--
|
|
2.25.1
|
|
|