Skip to content

Commit 16e58ad

Browse files
Merge pull request #275821 from KarlErickson/karler-fix-links
fix broken links
2 parents 634c824 + 040f911 commit 16e58ad

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

articles/spring-apps/enterprise/how-to-configure-enterprise-spring-cloud-gateway.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ To enable the response cache for any route, use the `LocalResponseCache` filter.
495495
}
496496
```
497497
498-
For more information, see the [LocalResponseCache](./how-to-configure-enterprise-spring-cloud-gateway-filters.md#localresponsecache) section of [How to use VMware Spring Cloud Gateway route filters with the Azure Spring Apps Enterprise plan](./how-to-configure-enterprise-spring-cloud-gateway-filters.md) and [LocalResponseCache](https://aka.ms/vmware/scg/filters/localresponsecache) in the VMware documentation.
498+
For more information, see the [LocalResponseCache](./how-to-configure-enterprise-spring-cloud-gateway-filters.md#localresponsecache) section of [How to use VMware Spring Cloud Gateway route filters with the Azure Spring Apps Enterprise plan](./how-to-configure-enterprise-spring-cloud-gateway-filters.md) and [LocalResponseCache](https://docs.vmware.com/en/VMware-Spring-Cloud-Gateway-for-Kubernetes/2.2/scg-k8s/GUID-guides-filters-traffic-control.html#localresponsecache) in the VMware documentation.
499499
500500
Instead of configuring `size` and `timeToLive` for each `LocalResponseCache` filter individually, you can set these parameters at the Spring Cloud Gateway level. This option enables you to use the `LocalResponseCache` filter without specifying these values initially, while retaining the flexibility to override them later.
501501

articles/spring-apps/enterprise/how-to-use-enterprise-spring-cloud-gateway.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -95,17 +95,17 @@ The following example shows a JSON file that's passed to the `--routes-file` par
9595

9696
The following table lists the route definitions. All the properties are optional.
9797

98-
| Property | Description |
99-
|-------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
100-
| title | A title to apply to methods in the generated OpenAPI documentation. |
101-
| description | A description to apply to methods in the generated OpenAPI documentation. |
102-
| uri | The full URI, which overrides the name of app that the requests route to. |
103-
| ssoEnabled | A value that indicates whether to enable SSO validation. See [Configure single sign-on](./how-to-configure-enterprise-spring-cloud-gateway.md#configure-single-sign-on). |
104-
| tokenRelay | Passes the currently authenticated user's identity token to the application. |
105-
| predicates | A list of predicates. See [Available Predicates](https://docs.vmware.com/en/VMware-Spring-Cloud-Gateway-for-Kubernetes/1.2/scg-k8s/GUID-configuring-routes.html#available-predicates). |
106-
| filters | A list of filters. See [Available Filters](https://docs.vmware.com/en/VMware-Spring-Cloud-Gateway-for-Kubernetes/1.2/scg-k8s/GUID-configuring-routes.html#available-filters). |
107-
| order | The route processing order. A lower order is processed with higher precedence, as in [Spring Cloud Gateway](https://docs.spring.io/spring-cloud-gateway/docs/current/reference/html/). |
108-
| tags | Classification tags that are applied to methods in the generated OpenAPI documentation. |
98+
| Property | Description |
99+
|-------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
100+
| title | A title to apply to methods in the generated OpenAPI documentation. |
101+
| description | A description to apply to methods in the generated OpenAPI documentation. |
102+
| uri | The full URI, which overrides the name of app that the requests route to. |
103+
| ssoEnabled | A value that indicates whether to enable SSO validation. See [Configure single sign-on](./how-to-configure-enterprise-spring-cloud-gateway.md#configure-single-sign-on). |
104+
| tokenRelay | Passes the currently authenticated user's identity token to the application. |
105+
| predicates | A list of predicates. See [Available Predicates](https://docs.vmware.com/en/VMware-Spring-Cloud-Gateway-for-Kubernetes/2.2/scg-k8s/GUID-developer-predicates.html#available-predicates). |
106+
| filters | A list of filters. See [Available Filters](https://docs.vmware.com/en/VMware-Spring-Cloud-Gateway-for-Kubernetes/2.2/scg-k8s/GUID-developer-filters.html#available-filters). |
107+
| order | The route processing order. A lower order is processed with higher precedence, as in [Spring Cloud Gateway](https://docs.spring.io/spring-cloud-gateway/docs/current/reference/html/). |
108+
| tags | Classification tags that are applied to methods in the generated OpenAPI documentation. |
109109

110110
> [!NOTE]
111111
> Because of security or compatibility reasons, not all the filters/predicates are supported in Azure Spring Apps. The following aren't supported:

articles/spring-apps/enterprise/quickstart-set-request-rate-limits-enterprise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Rate limiting enables you to avoid problems that arise with spikes in traffic. W
3333

3434
## Set request rate limits
3535

36-
Spring Cloud Gateway includes route filters from the Open Source version and several more route filters. One of these filters is the [RateLimit: Limiting user requests filter](https://docs.vmware.com/en/VMware-Spring-Cloud-Gateway-for-Kubernetes/1.2/scg-k8s/GUID-route-filters.html#ratelimit-limiting-user-requests-filter). The RateLimit filter limits the number of requests allowed per route during a time window.
36+
Spring Cloud Gateway includes route filters from the Open Source version and several more route filters. One of these filters is the [RateLimit: Limiting user requests filter](https://docs.vmware.com/en/VMware-Spring-Cloud-Gateway-for-Kubernetes/2.2/scg-k8s/GUID-guides-filters-traffic-control.html#ratelimit). The RateLimit filter limits the number of requests allowed per route during a time window.
3737

3838
When defining a route, you can add the RateLimit filter by including it in the list of filters for the route. The filter accepts four options:
3939

0 commit comments

Comments
 (0)