Skip to content
Merged
Show file tree
Hide file tree
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
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,7 +121,7 @@ Alternatively, log in to the Teleport Web Interface at `https://teleport.example

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 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).
- See full configuration and CLI [reference](./reference.mdx).
Expand Down
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 @@ -112,7 +112,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/guides/mysql-cloudsql.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,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
11 changes: 11 additions & 0 deletions docs/pages/includes/install-linux.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,17 @@ Next, 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