app/vmgateway: fix typo in docs

Signed-off-by: Zakhar Bessarab <z.bessarab@victoriametrics.com>
This commit is contained in:
Zakhar Bessarab 2023-02-22 16:28:52 +04:00 committed by Aliaksandr Valialkin
parent 4ee73f54a6
commit 5d7da8479f
No known key found for this signature in database
GPG Key ID: A72BEC6CD3D0DED1
2 changed files with 8 additions and 8 deletions

View File

@ -213,7 +213,7 @@ This command will result in 3 keys loaded: 2 keys from files and 1 from command
In order to enable [OpenID discovery](https://openid.net/specs/openid-connect-discovery-1_0.html) endpoint for JWT signature verification, you need to specify OpenID discovery endpoint URLs by using `auth.oidcDiscoveryEndpoints` flag.
When `auth.oidcDiscoveryEndpoints` is specified `vmageteway` will fetch JWKS keys from the specified endpoint and use them for JWT signature verification.
Example usage for tokens issues by Azure Active Directory:
Example usage for tokens issued by Azure Active Directory:
```console
/bin/vmgateway -eula \
-enable.auth \
@ -222,7 +222,7 @@ Example usage for tokens issues by Azure Active Directory:
-auth.oidcDiscoveryEndpoints=https://login.microsoftonline.com/common/v2.0/.well-known/openid-configuration
```
Example usage for tokens issues by Google:
Example usage for tokens issued by Google:
```console
/bin/vmgateway -eula \
-enable.auth \
@ -238,7 +238,7 @@ Example usage for tokens issues by Google:
In order to enable JWKS endpoint for JWT signature verification, you need to specify JWKS endpoint URL by using `auth.jwksEndpoints` flag.
When `auth.jwksEndpoints` is specified `vmageteway` will fetch public keys from the specified endpoint and use them for JWT signature verification.
Example usage for tokens issues by Azure Active Directory:
Example usage for tokens issued by Azure Active Directory:
```console
/bin/vmgateway -eula \
-enable.auth \
@ -247,7 +247,7 @@ Example usage for tokens issues by Azure Active Directory:
-auth.jwksEndpoints=https://login.microsoftonline.com/common/discovery/v2.0/keys
```
Example usage for tokens issues by Google:
Example usage for tokens issued by Google:
```console
/bin/vmgateway -eula \
-enable.auth \

View File

@ -217,7 +217,7 @@ This command will result in 3 keys loaded: 2 keys from files and 1 from command
In order to enable [OpenID discovery](https://openid.net/specs/openid-connect-discovery-1_0.html) endpoint for JWT signature verification, you need to specify OpenID discovery endpoint URLs by using `auth.oidcDiscoveryEndpoints` flag.
When `auth.oidcDiscoveryEndpoints` is specified `vmageteway` will fetch JWKS keys from the specified endpoint and use them for JWT signature verification.
Example usage for tokens issues by Azure Active Directory:
Example usage for tokens issued by Azure Active Directory:
```console
/bin/vmgateway -eula \
-enable.auth \
@ -226,7 +226,7 @@ Example usage for tokens issues by Azure Active Directory:
-auth.oidcDiscoveryEndpoints=https://login.microsoftonline.com/common/v2.0/.well-known/openid-configuration
```
Example usage for tokens issues by Google:
Example usage for tokens issued by Google:
```console
/bin/vmgateway -eula \
-enable.auth \
@ -242,7 +242,7 @@ Example usage for tokens issues by Google:
In order to enable JWKS endpoint for JWT signature verification, you need to specify JWKS endpoint URL by using `auth.jwksEndpoints` flag.
When `auth.jwksEndpoints` is specified `vmageteway` will fetch public keys from the specified endpoint and use them for JWT signature verification.
Example usage for tokens issues by Azure Active Directory:
Example usage for tokens issued by Azure Active Directory:
```console
/bin/vmgateway -eula \
-enable.auth \
@ -251,7 +251,7 @@ Example usage for tokens issues by Azure Active Directory:
-auth.jwksEndpoints=https://login.microsoftonline.com/common/discovery/v2.0/keys
```
Example usage for tokens issues by Google:
Example usage for tokens issued by Google:
```console
/bin/vmgateway -eula \
-enable.auth \