mirror of https://github.com/dapr/docs.git
Fix links to broken middleware components
Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
This commit is contained in:
parent
e061ce6d7f
commit
7f63ecc588
|
@ -4,7 +4,7 @@
|
||||||
version: v1
|
version: v1
|
||||||
description: Restricts the maximum number of allowed HTTP requests per second
|
description: Restricts the maximum number of allowed HTTP requests per second
|
||||||
- component: OAuth2 Authorization Grant flow
|
- component: OAuth2 Authorization Grant flow
|
||||||
link: https://tools.ietf.org/html/rfc6749#section-4.1
|
link: https://www.rfc-editor.org/rfc/rfc6749#section-4.1
|
||||||
state: Alpha
|
state: Alpha
|
||||||
version: v1
|
version: v1
|
||||||
description: Enables the [OAuth2 Authorization Grant flow](https://tools.ietf.org/html/rfc6749#section-4.1) on a Web API
|
description: Enables the [OAuth2 Authorization Grant flow](https://tools.ietf.org/html/rfc6749#section-4.1) on a Web API
|
||||||
|
@ -24,22 +24,22 @@
|
||||||
version: v1
|
version: v1
|
||||||
description: Applies [Rego/OPA Policies](https://www.openpolicyagent.org/) to incoming Dapr HTTP requests
|
description: Applies [Rego/OPA Policies](https://www.openpolicyagent.org/) to incoming Dapr HTTP requests
|
||||||
- component: Sentinel
|
- component: Sentinel
|
||||||
link: middleware-sentinel
|
link: /reference/components-reference/supported-middleware/middleware-sentinel
|
||||||
state: Alpha
|
state: Alpha
|
||||||
version: v1
|
version: v1
|
||||||
description: Use Sentinel middleware to guarantee the reliability and resiliency of your application
|
description: Use Sentinel middleware to guarantee the reliability and resiliency of your application
|
||||||
- component: RouterChecker
|
- component: RouterChecker
|
||||||
link: middleware-routerchecker
|
link: /reference/components-reference/supported-middleware/middleware-routerchecker
|
||||||
state: Alpha
|
state: Alpha
|
||||||
version: v1
|
version: v1
|
||||||
description: Use RouterChecker middleware to block invalid http request routing
|
description: Use RouterChecker middleware to block invalid http request routing
|
||||||
- component: Uppercase
|
- component: Uppercase
|
||||||
link: middleware-uppercase
|
link: /reference/components-reference/supported-middleware/middleware-uppercase
|
||||||
state: Stable
|
state: Stable
|
||||||
version: v1
|
version: v1
|
||||||
description: Converts the body of the request to uppercase letters (demo)
|
description: Converts the body of the request to uppercase letters (demo)
|
||||||
- component: WASM
|
- component: WASM
|
||||||
link: middleware-wasm
|
link: /reference/components-reference/supported-middleware/middleware-wasm
|
||||||
state: Alpha
|
state: Alpha
|
||||||
version: v1
|
version: v1
|
||||||
description: Use WASM middleware in your HTTP pipeline
|
description: Use WASM middleware in your HTTP pipeline
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
{{ range sort $components "component" }}
|
{{ range sort $components "component" }}
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="/reference/components-reference/supported-middleware/{{ .link }}/" }}>{{ .component
|
<td><a href="{{ .link }}/" }}>{{ .component
|
||||||
}}</a>
|
}}</a>
|
||||||
</td>
|
</td>
|
||||||
<td>{{ .description | markdownify}}</td>
|
<td>{{ .description | markdownify}}</td>
|
||||||
|
|
Loading…
Reference in New Issue