diff --git a/docs/pages/application-access/getting-started.mdx b/docs/pages/application-access/getting-started.mdx index 6b133542ccb82..7f3725c0552ef 100644 --- a/docs/pages/application-access/getting-started.mdx +++ b/docs/pages/application-access/getting-started.mdx @@ -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/). diff --git a/docs/pages/application-access/guides/connecting-apps.mdx b/docs/pages/application-access/guides/connecting-apps.mdx index 7355c6b9e0705..afb326c80e2ff 100644 --- a/docs/pages/application-access/guides/connecting-apps.mdx +++ b/docs/pages/application-access/guides/connecting-apps.mdx @@ -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 diff --git a/docs/pages/database-access/getting-started.mdx b/docs/pages/database-access/getting-started.mdx index cd84ff12be254..bf4466d0c2309 100644 --- a/docs/pages/database-access/getting-started.mdx +++ b/docs/pages/database-access/getting-started.mdx @@ -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). diff --git a/docs/pages/database-access/guides/mysql-cloudsql.mdx b/docs/pages/database-access/guides/mysql-cloudsql.mdx index 7ddf4faea1a72..cd369dd05071e 100644 --- a/docs/pages/database-access/guides/mysql-cloudsql.mdx +++ b/docs/pages/database-access/guides/mysql-cloudsql.mdx @@ -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`: diff --git a/docs/pages/desktop-access/getting-started.mdx b/docs/pages/desktop-access/getting-started.mdx index 226a2f20dc673..b2930d8db0e1e 100644 --- a/docs/pages/desktop-access/getting-started.mdx +++ b/docs/pages/desktop-access/getting-started.mdx @@ -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`: diff --git a/docs/pages/includes/install-linux.mdx b/docs/pages/includes/install-linux.mdx index 6d74348b3ce71..f6f6b002ae3f9 100644 --- a/docs/pages/includes/install-linux.mdx +++ b/docs/pages/includes/install-linux.mdx @@ -62,6 +62,17 @@ Use the appropriate commands for your environment to install your package. # $ sudo dnf install teleport ``` + + 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 with the architecture type (amd64, arm64,...) + $ rpm -i teleport-(=teleport.version=)-1..rpm + ``` + +