From 08a61d5c13c98ca731b27ac7fa49d042a560bba3 Mon Sep 17 00:00:00 2001 From: Zakhar Bessarab <z.bessarab@victoriametrics.com> Date: Wed, 22 Feb 2023 16:28:52 +0400 Subject: [PATCH] app/vmgateway: fix typo in docs Signed-off-by: Zakhar Bessarab <z.bessarab@victoriametrics.com> --- app/vmgateway/README.md | 8 ++++---- docs/vmgateway.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app/vmgateway/README.md b/app/vmgateway/README.md index 6ede25c75..3e13471e4 100644 --- a/app/vmgateway/README.md +++ b/app/vmgateway/README.md @@ -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 \ diff --git a/docs/vmgateway.md b/docs/vmgateway.md index 60cfdfa13..fed3982ca 100644 --- a/docs/vmgateway.md +++ b/docs/vmgateway.md @@ -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 \