Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix links to policy docs pages #55

Merged
merged 2 commits into from
May 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -46,25 +46,25 @@ tags: index-page # Note: This adds a custom class to layout.njk
<div class="col-xl-3 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box">
<div class="icon"><i class="bx bx-lock"></i></div>
<h4><a href="https://docs.kuadrant.io/latest/kuadrant-operator/doc/reference/tlspolicy/">Secure: TLSPolicy</a></h4>
<h4><a href="https://docs.kuadrant.io/latest/kuadrant-operator/doc/tls/">Secure: TLSPolicy</a></h4>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Possibly the reason why it pointed to the API references before was because the DNSPolicy does not have an Overview page in the docs. IMO though the overview pages are usually richer to explain the concept for one who wants to learn about these policies for the first time.

<p>Automatically secure traffic to your Gateways with automatic ACME-based TLS integration that supports all of the main ACME providers, including Let's Encrypt</p>
</div>
</div>

<div class="col-xl-3 col-md-6 d-flex align-items-stretch mt-4 mt-xl-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bx bx-shield"></i></div>
<h4><a href="https://docs.kuadrant.io/latest/kuadrant-operator/doc/reference/authpolicy/">Protect: AuthPolicy</a></h4>
<p>Protect your services with our flexible and powerful [AuthPolicy API](https://docs.kuadrant.io/latest/kuadrant-operator/doc/auth/) that integrates Authentication and Authorization at the Gateway or HTTPRoute level.</p>
<h4><a href="https://docs.kuadrant.io/latest/kuadrant-operator/doc/auth/">Protect: AuthPolicy</a></h4>
<p>Protect your services with our flexible and powerful <a href="https://docs.kuadrant.io/latest/kuadrant-operator/doc/auth/">AuthPolicy API</a> that integrates Authentication and Authorization at the Gateway or HTTPRoute level.</p>
</div>
</div>
<div class="col-xl-3 col-md-6 d-flex align-items-stretch mt-4 mt-xl-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bx bx-shield"></i></div>
<h4><a href="https://docs.kuadrant.io/latest/kuadrant-operator/doc/reference/ratelimitpolicy/">Protect: RateLimitPolicy</a></h4>
<h4><a href="https://docs.kuadrant.io/latest/kuadrant-operator/doc/rate-limiting/">Protect: RateLimitPolicy</a></h4>
<p>Protect your services with our flexible and powerful <a href="https://docs.kuadrant.io/latest/kuadrant-operator/doc/rate-limiting/">RateLimitPolicy</a> that integrates rate limiting at the Gateway or HTTPRoute level.</p>
</div>
</div>
</div>
</div>

<br><br>
Expand Down
Loading