issue 12473 Fix minor typo in authentication.md around base64 encoding in the HTTP Authorization header

pull/6/head
Mark Petrovic 2015-08-10 05:25:44 -07:00
parent e034712456
commit 105ace039f
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ The basic auth file format is implemented in `plugin/pkg/auth/authenticator/pass
and is a csv file with 3 columns: password, user name, user id.
When using basic authentication from an http client, the apiserver expects an `Authorization` header
with a value of `Basic BASE64ENCODEDUSER:PASSWORD`.
with a value of `Basic BASE64ENCODED(USER:PASSWORD)`.
## Plugin Development