diff --git a/app/vmgateway/README.md b/app/vmgateway/README.md index 6ede25c757..3e13471e48 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 60cfdfa138..fed3982caa 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 \