mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-01-20 07:19:17 +01:00
app/vmgateway: fix typo in docs
Signed-off-by: Zakhar Bessarab <z.bessarab@victoriametrics.com>
This commit is contained in:
parent
4ee73f54a6
commit
5d7da8479f
@ -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.
|
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.
|
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
|
```console
|
||||||
/bin/vmgateway -eula \
|
/bin/vmgateway -eula \
|
||||||
-enable.auth \
|
-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
|
-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
|
```console
|
||||||
/bin/vmgateway -eula \
|
/bin/vmgateway -eula \
|
||||||
-enable.auth \
|
-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.
|
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.
|
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
|
```console
|
||||||
/bin/vmgateway -eula \
|
/bin/vmgateway -eula \
|
||||||
-enable.auth \
|
-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
|
-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
|
```console
|
||||||
/bin/vmgateway -eula \
|
/bin/vmgateway -eula \
|
||||||
-enable.auth \
|
-enable.auth \
|
||||||
|
@ -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.
|
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.
|
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
|
```console
|
||||||
/bin/vmgateway -eula \
|
/bin/vmgateway -eula \
|
||||||
-enable.auth \
|
-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
|
-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
|
```console
|
||||||
/bin/vmgateway -eula \
|
/bin/vmgateway -eula \
|
||||||
-enable.auth \
|
-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.
|
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.
|
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
|
```console
|
||||||
/bin/vmgateway -eula \
|
/bin/vmgateway -eula \
|
||||||
-enable.auth \
|
-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
|
-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
|
```console
|
||||||
/bin/vmgateway -eula \
|
/bin/vmgateway -eula \
|
||||||
-enable.auth \
|
-enable.auth \
|
||||||
|
Loading…
Reference in New Issue
Block a user