diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2025-01-26 10:52:32 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-26 10:52:32 +1100 |
| commit | d382bb07b5b269086c3ae18bf03f1dfd0863a149 (patch) | |
| tree | 2d7a1cf1f725f70f0ce2d980c3b97c589c542e81 /docs | |
| parent | 1a2afaf32bc0d6aa6dd01978960453e9bc5645d3 (diff) | |
fix(configuration): authz endpoint errors with forward slash (#8654)
This fixes an issue where the server authz endpoint configuration causes an error if a user uses a path with a slash. There is no reason this shouldn't be allowed, and there are several documented areas that include this format.
Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/content/configuration/miscellaneous/server-endpoints-authz.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/configuration/miscellaneous/server-endpoints-authz.md b/docs/content/configuration/miscellaneous/server-endpoints-authz.md index a5b3625be..2f5e943fa 100644 --- a/docs/content/configuration/miscellaneous/server-endpoints-authz.md +++ b/docs/content/configuration/miscellaneous/server-endpoints-authz.md @@ -65,7 +65,7 @@ The first level under the `authz` directive is the name of the endpoint. In the The name correlates with the path of the endpoint. All endpoints start with `/api/authz/`, and end with the name. In the example the `forward-auth` endpoint has a full path of `/api/authz/forward-auth`. -Valid characters for the name are alphanumeric as well as `-` and `_`. They MUST start AND end with an +Valid characters for the name are alphanumeric as well as `-`, `_`, and `/`. They MUST start AND end with an alphanumeric character. ### implementation |
