From 3913c16f45526f5ce93a46356e93ea397e2a11f8 Mon Sep 17 00:00:00 2001 From: Johnny Rock <7411297+freekngdom@users.noreply.github.com> Date: Sat, 6 Dec 2025 10:03:03 -0800 Subject: [PATCH] Fix typo in environment variable example Signed-off-by: Johnny Rock <7411297+freekngdom@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5494f86..c407a1a 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ You must set up regular expressions for each HTTP method the client application The name of a parameter should be "-allow", followed by the HTTP method name (for example, `-allowGET`). The request will be allowed if that parameter is set and the incoming request matches the method and path matching the regexp. If it is not set, then the corresponding HTTP method will not be allowed. -It is also possible to configure the allowlist via environment variables. The variables are called "SP_ALLOW_", followed by the HTTP method (for example, `SP_ALLLOW_GET`). +It is also possible to configure the allowlist via environment variables. The variables are called "SP_ALLOW_", followed by the HTTP method (for example, `SP_ALLOW_GET`). If both commandline parameter and environment variable are configured for a particular HTTP method, the environment variable is ignored.