diff --git a/.docs/content/1.concepts/3.authentication.md b/.docs/content/1.concepts/3.authentication.md index 25d667d1e..c5e5f1ade 100644 --- a/.docs/content/1.concepts/3.authentication.md +++ b/.docs/content/1.concepts/3.authentication.md @@ -125,7 +125,7 @@ InitServices__Authentication__Roles__1='{"Name": "Role2", "Permissions": ["Submi #### Specify users -To specify a user with the name "User1" with the role "Role1", use the following command: +To specify a user with the name "User1" with the role "Role1", use the following environment variable: ```bash InitServices__Authentication__Users__0='{"Name": "User1", "Roles": ["Role1"]})' @@ -133,13 +133,13 @@ InitServices__Authentication__Users__0='{"Name": "User1", "Roles": ["Role1"]})' #### Specify certificates -To insert a certificate with Common Name "CN1" and Fingerprint "FP1" associated with the User called "User1", use the following command: +To insert a certificate with Common Name "CN1" and Fingerprint "FP1" associated with the User called "User1", use the following environment variable: ```javascript InitServices__Authentication__UserCertificates__0='{"User": "User1", "CN": "CN1", "Fingerprint": "FP1"}' ``` -To insert an entry matching all certificates with Common Name "CN1" associated with the User called "User1", use the following command: +To insert an entry matching all certificates with Common Name "CN1" associated with the User called "User1", use the following environment variable: ```javascript InitServices__Authentication__UserCertificates__0='{"User": "User1", "CN": "CN1"}'