Skip to content

Commit 9f08679

Browse files
committed
fixes broken links
1 parent 02e426a commit 9f08679

10 files changed

+39
-39
lines changed

content/docs/courses/zero-fundamentals/build-policies.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Let’s get started!
4545

4646
PPL is a proprietary, YAML-based declarative language that enables you to create fine-grained, secure, and performant policies to protect your services.
4747

48-
PPL is designed to be intuitive and simple. See the [**Policy Language**](/docs/capabilities/policy-language) page for examples and in-depth explanations of the following core concepts in PPL:
48+
PPL is designed to be intuitive and simple. See the [**Policy Language**](/docs/capabilities/ppl) page for examples and in-depth explanations of the following core concepts in PPL:
4949

5050
- **Rules**
5151
- **Actions**

content/examples/fundamentals/advanced-policies.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ In this guide, you’ll learn how to build **Advanced Policies** with Pomerium.
1515

1616
Make sure you’ve completed the following tutorials:
1717

18-
- [**Get Started**](/docs/courses/fundamentals/get-started)
19-
- [**Build a Simple Route**](/docs/courses/fundamentals/build-routes)
20-
- [**Build a Simple Policy**](/docs/courses/fundamentals/build-policies)
21-
- [**Identity Verification with JWTs**](/docs/courses/fundamentals/jwt-verification)
18+
- [**Get Started**](/examples/fundamentals/get-started)
19+
- [**Build a Simple Route**](/examples/fundamentals/build-routes)
20+
- [**Build a Simple Policy**](/examples/fundamentals/build-policies)
21+
- [**Identity Verification with JWTs**](/examples/fundamentals/jwt-verification)
2222

2323
Each tutorial builds on the same configuration files. In this tutorial, you’ll add complexity to your authorization policy.
2424

content/examples/fundamentals/advanced-routes.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ Now that you’ve built advanced policies, let’s build on your routes a bit mo
1616

1717
Make sure you’ve completed the following tutorials:
1818

19-
- [**Get Started**](/docs/courses/fundamentals/get-started)
20-
- [**Build a Simple Route**](/docs/courses/fundamentals/build-routes)
21-
- [**Build a Simple Policy**](/docs/courses/fundamentals/build-policies)
22-
- [**Identity Verification with JWTs**](/docs/courses/fundamentals/jwt-verification)
23-
- [**Build Advanced Policies**](/docs/courses/fundamentals/advanced-policies)
19+
- [**Get Started**](/examples/fundamentals/get-started)
20+
- [**Build a Simple Route**](/examples/fundamentals/build-routes)
21+
- [**Build a Simple Policy**](/examples/fundamentals/build-policies)
22+
- [**Identity Verification with JWTs**](/examples/fundamentals/jwt-verification)
23+
- [**Build Advanced Policies**](/examples/fundamentals/advanced-policies)
2424

2525
Each tutorial builds on the same configuration files. In this tutorial, you’ll build new routes with some of Pomerium’s route-level settings.
2626

content/examples/fundamentals/build-policies.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Specifically, we’ll cover:
3232

3333
Make sure you’ve completed the following tutorials:
3434

35-
- [**Get Started**](/docs/courses/fundamentals/get-started)
36-
- [**Build a Simple Route**](/docs/courses/fundamentals/build-routes)
35+
- [**Get Started**](/examples/fundamentals/get-started)
36+
- [**Build a Simple Route**](/examples/fundamentals/build-routes)
3737

3838
If you completed these tutorials, you should have:
3939

content/examples/fundamentals/build-routes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In this tutorial, you’ll learn about **Routing** in Pomerium. By the end, you
1313

1414
:::note **Before You Start**
1515

16-
Make sure you’ve completed the [**Get Started**](/docs/courses/fundamentals/get-started) tutorial.
16+
Make sure you’ve completed the [**Get Started**](/examples/fundamentals/get-started) tutorial.
1717

1818
If you already did, you should have:
1919

content/examples/fundamentals/get-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ In a later tutorial, you will configure Pomerium and the Verify service to succe
159159

160160
Great job! If you got this far, then you have everything you need to run Pomerium and continue on with our guided tutorials.
161161

162-
In the next section, we will dive deeper into [**Routes**](/docs/courses/fundamentals/build-routes) with Pomerium.
162+
In the next section, we will dive deeper into [**Routes**](/examples/fundamentals/build-routes) with Pomerium.
163163

164164
### Configuration file state:
165165

content/examples/fundamentals/jwt-verification.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ But first, a bit of background on JWTs and their application in Pomerium…
2828

2929
Make sure you’ve completed the following tutorials:
3030

31-
- [**Get Started**](/docs/courses/fundamentals/get-started)
32-
- [**Build a Simple Route**](/docs/courses/fundamentals/build-routes)
33-
- [**Build a Simple Policy**](/docs/courses/fundamentals/build-policies)
31+
- [**Get Started**](/examples/fundamentals/get-started)
32+
- [**Build a Simple Route**](/examples/fundamentals/build-routes)
33+
- [**Build a Simple Policy**](/examples/fundamentals/build-policies)
3434

3535
If you completed these tutorials, you should have:
3636

content/examples/fundamentals/production-certificates.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ In this tutorial, you’ll add production certificates with Autocert to your Pom
2323

2424
Make sure you’ve completed the following tutorials:
2525

26-
- [**Get Started**](/docs/courses/fundamentals/get-started)
27-
- [**Build a Simple Route**](/docs/courses/fundamentals/build-routes)
28-
- [**Build a Simple Policy**](/docs/courses/fundamentals/build-policies)
29-
- [**Identity Verification with JWTs**](/docs/courses/fundamentals/jwt-verification)
30-
- [**Build Advanced Policies**](/docs/courses/fundamentals/advanced-policies)
31-
- [**Build Advanced Routes**](/docs/courses/fundamentals/advanced-routes)
32-
- [**Build TCP Routes**](/docs/courses/fundamentals/tcp-routes)
33-
- [**Self-Host Pomerium**](/docs/courses/fundamentals/self-hosted-pomerium)
26+
- [**Get Started**](/examples/fundamentals/get-started)
27+
- [**Build a Simple Route**](/examples/fundamentals/build-routes)
28+
- [**Build a Simple Policy**](/examples/fundamentals/build-policies)
29+
- [**Identity Verification with JWTs**](/examples/fundamentals/jwt-verification)
30+
- [**Build Advanced Policies**](/examples/fundamentals/advanced-policies)
31+
- [**Build Advanced Routes**](/examples/fundamentals/advanced-routes)
32+
- [**Build TCP Routes**](/examples/fundamentals/tcp-routes)
33+
- [**Self-Host Pomerium**](/examples/fundamentals/self-hosted-pomerium)
3434

3535
Each tutorial builds on the same configuration files. In this tutorial, you’ll learn how to enable Autocert to manage TLS certificate automation for your upstream services.
3636

content/examples/fundamentals/self-hosted-pomerium.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ To do this, you must:
2525

2626
Make sure you’ve completed the following tutorials:
2727

28-
- [**Get Started**](/docs/courses/fundamentals/get-started)
29-
- [**Build a Simple Route**](/docs/courses/fundamentals/build-routes)
30-
- [**Build a Simple Policy**](/docs/courses/fundamentals/build-policies)
31-
- [**Identity Verification with JWTs**](/docs/courses/fundamentals/jwt-verification)
32-
- [**Build Advanced Policies**](/docs/courses/fundamentals/advanced-policies)
33-
- [**Build Advanced Routes**](/docs/courses/fundamentals/advanced-routes)
34-
- [**Build TCP Routes**](/docs/courses/fundamentals/tcp-routes)
28+
- [**Get Started**](/examples/fundamentals/get-started)
29+
- [**Build a Simple Route**](/examples/fundamentals/build-routes)
30+
- [**Build a Simple Policy**](/examples/fundamentals/build-policies)
31+
- [**Identity Verification with JWTs**](/examples/fundamentals/jwt-verification)
32+
- [**Build Advanced Policies**](/examples/fundamentals/advanced-policies)
33+
- [**Build Advanced Routes**](/examples/fundamentals/advanced-routes)
34+
- [**Build TCP Routes**](/examples/fundamentals/tcp-routes)
3535

3636
Each tutorial builds on the same configuration files. In this tutorial, you’ll replace the Hosted Authenticate service with your own self-hosted authenticate service.
3737

@@ -257,4 +257,4 @@ This means your Pomerium instance is hosted in a private network. Because you ha
257257

258258
This setting will secure connections between Pomerium and the upstream service, and it’s the final piece you need to self-host a production-ready Pomerium deployment.
259259

260-
**Next up**: [Production Certificates With Autocert](/docs/courses/fundamentals/production-certificates)
260+
**Next up**: [Production Certificates With Autocert](/examples/fundamentals/production-certificates)

content/examples/fundamentals/tcp-routes.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ Specifically,  we’ll create a [Redis](https://redis.io/) service and route us
1919

2020
Make sure you’ve completed the following tutorials:
2121

22-
- [**Get Started**](/docs/courses/fundamentals/get-started)
23-
- [**Build a Simple Route**](/docs/courses/fundamentals/build-routes)
24-
- [**Build a Simple Policy**](/docs/courses/fundamentals/build-policies)
25-
- [**Identity Verification with JWTs**](/docs/courses/fundamentals/jwt-verification)
26-
- [**Build Advanced Policies**](/docs/courses/fundamentals/advanced-policies)
27-
- [**Build Advanced Routes**](/docs/courses/fundamentals/advanced-routes)
22+
- [**Get Started**](/examples/fundamentals/get-started)
23+
- [**Build a Simple Route**](/examples/fundamentals/build-routes)
24+
- [**Build a Simple Policy**](/examples/fundamentals/build-policies)
25+
- [**Identity Verification with JWTs**](/examples/fundamentals/jwt-verification)
26+
- [**Build Advanced Policies**](/examples/fundamentals/advanced-policies)
27+
- [**Build Advanced Routes**](/examples/fundamentals/advanced-routes)
2828

2929
Each tutorial builds on the same configuration files. In this tutorial, you’ll build routes to several services and proxy TCP connections to these services with Pomerium CLI.
3030

0 commit comments

Comments
 (0)