Skip to content
2 changes: 1 addition & 1 deletion docs/pages/application-access/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ Dive deeper into the topics relevant to your Application Access use-case:

- Learn in more detail about [connecting applications](./guides/connecting-apps.mdx) with Application Access.
- Learn about integrating with [JWT tokens](./jwt/introduction.mdx) for auth.
- Learn how to use Application Access with [RESTful APIs](./guides/api-access.mdx).
- Learn how to use application access with [RESTful APIs](./guides/api-access.mdx).
- See full configuration and CLI [reference](./reference.mdx).
- Read about how Let's Encrypt uses the [ACME protocol](https://letsencrypt.org/how-it-works/).
2 changes: 1 addition & 1 deletion docs/pages/application-access/guides/connecting-apps.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ $ sudo teleport start \
```

Note that the `--auth-server` flag must point to the Teleport cluster's proxy
endpoint because the application service always connects back to the cluster over
endpoint because the Application Service always connects back to the cluster over
a reverse tunnel.

### Application name
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/database-access/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -222,5 +222,5 @@ Access use-case, for example:

- Check out configuration [guides](./guides.mdx).
- Learn how to configure [GUI clients](../connect-your-client/gui-clients.mdx).
- Learn about Database Access [role-based access control](./rbac.mdx).
- Learn about database access [role-based access control](./rbac.mdx).
- See [frequently asked questions](./faq.mdx).
2 changes: 1 addition & 1 deletion docs/pages/database-access/guides/mysql-cloudsql.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Install Teleport on the host where you will run the Teleport Database Service:

## Step 4/5. Set up the Teleport Database service

Below is an example of a database service configuration file that proxies
Below is an example of a Database Service configuration file that proxies
a single Cloud SQL MySQL database. Save this file as `/etc/teleport.yaml`:

<ScopedBlock scope={["oss", "enterprise"]}>
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/desktop-access/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Copy the token to the Linux host where you will run the Desktop service as `/tmp

(!docs/pages/includes/install-linux.mdx!)

Create `/etc/teleport.yaml` and configure it for Desktop Access. Update the `proxy_server`
Create `/etc/teleport.yaml` and configure it for desktop access. Update the `proxy_server`
value to your Teleport proxy service or cloud tenant, and put the Windows machine address
under `non_ad_hosts`:

Expand Down
11 changes: 11 additions & 0 deletions docs/pages/includes/install-linux.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,17 @@ Use the appropriate commands for your environment to install your package.
# $ sudo dnf install teleport
```

<Admonition type="warning" title="Amazon Linux 2023 Installations">
Amazon Linux 2023 users should utilize the tarball or RPM file to install Teleport.
You can download the matching RPM architecture for your instance
from the [Teleport Downloads page](https://goteleport.com/download) and install with the example command below.

```code
# Replace <arch> with the architecture type (amd64, arm64,...)
$ rpm -i teleport-(=teleport.version=)-1.<arch>.rpm
```
</Admonition>

</TabItem>
<TabItem label="Tarball" scope="oss">

Expand Down