From bc63bc15dec35da9358c524421139fc115ee6482 Mon Sep 17 00:00:00 2001 From: Kyle Bai Date: Tue, 17 Oct 2017 00:43:26 +0800 Subject: [PATCH] Fix anonymous access opts in v1.5.x (#5918) --- docs/admin/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/admin/authentication.md b/docs/admin/authentication.md index 9411b24c03..4925f0074d 100644 --- a/docs/admin/authentication.md +++ b/docs/admin/authentication.md @@ -581,7 +581,7 @@ a request providing an invalid bearer token would receive a `401 Unauthorized` e A request providing no bearer token would be treated as an anonymous request. In 1.5.1-1.5.x, anonymous access is disabled by default, and can be enabled by -passing the `--anonymous-auth=false` option to the API server. +passing the `--anonymous-auth=true` option to the API server. In 1.6+, anonymous access is enabled by default if an authorization mode other than `AlwaysAllow` is used, and can be disabled by passing the `--anonymous-auth=false` option to the API server.