From ad566ee9eff99f12bc987f79e8bdc49086115401 Mon Sep 17 00:00:00 2001
From: Martin Saldinger <51637671+LeTamanoir@users.noreply.github.com>
Date: Fri, 3 Oct 2025 14:10:04 +0200
Subject: [PATCH] Fix PreserveRequestMethod casing
---
.../routing-configuration/http/middlewares/forwardauth.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/reference/routing-configuration/http/middlewares/forwardauth.md b/docs/content/reference/routing-configuration/http/middlewares/forwardauth.md
index f5cd9131b..8394924a0 100644
--- a/docs/content/reference/routing-configuration/http/middlewares/forwardauth.md
+++ b/docs/content/reference/routing-configuration/http/middlewares/forwardauth.md
@@ -65,7 +65,7 @@ spec:
| `maxBodySize` | Set the `maxBodySize` to limit the body size in bytes. If body is bigger than this, it returns a 401 (unauthorized). | -1 | No |
| | Defines a header field to store the authenticated user. | "" | No |
| | Defines whether to forward the Location header to the client as is or prefix it with the domain name of the authentication server. | false | No |
-| `PreserveRequestMethod` | Defines whether to preserve the original request method while forwarding the request to the authentication server. | false | No |
+| `preserveRequestMethod` | Defines whether to preserve the original request method while forwarding the request to the authentication server. | false | No |
| `tls.ca` | Sets the path to the certificate authority used for the secured connection to the authentication server, it defaults to the system bundle. | "" | No |
| `tls.cert` | Sets the path to the public certificate used for the secure connection to the authentication server. When using this option, setting the key option is required. | "" | No |
| `tls.key` | Sets the path to the private key used for the secure connection to the authentication server. When using this option, setting the `cert` option is required. | "" | No |