Skip to content

Commit 019f072

Browse files
author
Katie Horne
committed
Rename SSL to TLS
1 parent e98535d commit 019f072

File tree

15 files changed

+26
-26
lines changed

15 files changed

+26
-26
lines changed

admin/access-url.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ shown.
2525
to the external IP address you obtained in the previous step.
2626

2727
> If your custom domain uses the HTTPS protocol, make sure that you have
28-
> [SSL certificates](../guides/ssl-certificates/index.md) for use with your
28+
> [TLS certificates](../guides/tls-certificates/index.md) for use with your
2929
> Coder deployment. Otherwise, you can skip this step.
3030
3131
## Step 2: Update the Helm chart and redeploy Coder

admin/workspace-management/ssh-access.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,17 @@ X11UseLocalhost no
6060
```
6161

6262
> X11 forwarding will fail with `X11 forwarding request failed on channel 0` if
63-
`xauth` is not installed.
63+
> `xauth` is not installed.
6464
6565
### SSH environment variables
6666

67-
OpenSSH handles environment variables differently than most container
68-
processes. Environment variable overrides for OpenSSH sessions are set by
67+
OpenSSH handles environment variables differently than most container processes.
68+
Environment variable overrides for OpenSSH sessions are set by
6969
`~/.ssh/environment` and `/etc/environment`. Note that these values will
7070
override those specified in the Dockerfile `ENV` directives.
7171

72-
At workspace startup, Coder injects the image defined environment variables
73-
into `~/.ssh/environment`, as well as a set of Coder-defined defaults.
72+
At workspace startup, Coder injects the image defined environment variables into
73+
`~/.ssh/environment`, as well as a set of Coder-defined defaults.
7474

7575
The following snippet shows an example of what this file may look like for a new
7676
workspace.
@@ -118,5 +118,5 @@ ssh:
118118
```
119119
120120
> **For Cloudflare users:** Cloudflare's **proxied** mode does _not_ support
121-
> SSH. If you're using Cloudflare for SSL, add your certificates to your cluster
121+
> SSH. If you're using Cloudflare for TLS, add your certificates to your cluster
122122
> and use the **DNS only** mode to allow SSH.

admin/workspace-providers/deployment.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ when communicating with the Coder deployment.
122122
for more details.
123123

124124
For installations using HTTPS, you must
125-
[ensure the deployment has a valid certificate](../../guides/ssl-certificates/index.md).
125+
[ensure the deployment has a valid certificate](../../guides/tls-certificates/index.md).
126126

127127
If you're unfamiliar with the helm configuration values file, see our doc on
128128
[updating a helm chart](../../guides/admin/helm-charts.md)

guides/ssl-certificates/index.md

-6
This file was deleted.

guides/ssl-certificates/azureDNS.md renamed to guides/tls-certificates/azureDNS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Azure DNS
33
description:
4-
Learn how to use cert-manager to set up SSL certificates using Azure DNS for
4+
Learn how to use cert-manager to set up TLS certificates using Azure DNS for
55
DNS01 challenges.
66
---
77

guides/ssl-certificates/cloudDNS.md renamed to guides/tls-certificates/cloudDNS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Google Cloud DNS
33
description:
4-
Learn how to use cert-manager to set up SSL certificates using Google Cloud
4+
Learn how to use cert-manager to set up TLS certificates using Google Cloud
55
DNS for DNS01 challenges.
66
---
77

guides/ssl-certificates/cloudflare.md renamed to guides/tls-certificates/cloudflare.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Create a token with the following settings:
7676
You can also add more zones (or give the token access to all zones in your
7777
account), and set an expiry date.
7878

79-
![Create Custom Token](../../assets/guides/ssl-certificates/cloudflare-1.png)
79+
![Create Custom Token](../../assets/guides/tls-certificates/cloudflare-1.png)
8080

8181
Click **Continue to summary**, then **Create Token**. Be sure to copy and save
8282
the token displayed because Cloudflare will not display it again.

guides/tls-certificates/index.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: TLS certificates
3+
description: Learn how to use cert-manager to set up TLS certificates.
4+
---
5+
6+
<children></children>

manifest.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -341,19 +341,19 @@
341341
]
342342
},
343343
{
344-
"path": "./guides/ssl-certificates/index.md",
344+
"path": "./guides/tls-certificates/index.md",
345345
"children": [
346346
{
347-
"path": "./guides/ssl-certificates/azureDNS.md"
347+
"path": "./guides/tls-certificates/azureDNS.md"
348348
},
349349
{
350-
"path": "./guides/ssl-certificates/cloudDNS.md"
350+
"path": "./guides/tls-certificates/cloudDNS.md"
351351
},
352352
{
353-
"path": "./guides/ssl-certificates/cloudflare.md"
353+
"path": "./guides/tls-certificates/cloudflare.md"
354354
},
355355
{
356-
"path": "./guides/ssl-certificates/route53.md"
356+
"path": "./guides/tls-certificates/route53.md"
357357
}
358358
]
359359
},

setup/kubernetes/aws.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,6 @@ For more information, see:
233233
## Next steps
234234

235235
To access Coder through a secure domain, review our guides on configuring and
236-
using [SSL certificates](../../guides/ssl-certificates/index.md).
236+
using [TLS certificates](../../guides/tls-certificates/index.md).
237237

238238
Once complete, see our page on [installation](../installation.md).

setup/kubernetes/azure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,6 @@ For more information, see:
140140
## Next steps
141141

142142
To access Coder through a secure domain, review our guides on configuring and
143-
using [SSL certificates](../../guides/ssl-certificates/index.md).
143+
using [TLS certificates](../../guides/tls-certificates/index.md).
144144

145145
Once complete, see our page on [installation](../installation.md).

setup/kubernetes/google.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,6 @@ For more information, see:
151151
## Next steps
152152

153153
To access Coder through a secure domain, review our guides on configuring and
154-
using [SSL certificates](../../guides/ssl-certificates/index.md).
154+
using [TLS certificates](../../guides/tls-certificates/index.md).
155155

156156
Once complete, see our page on [installation](../installation.md).

setup/kubernetes/k3s.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,6 @@ cp /etc/rancher/k3s/k3s.yaml ~/.kube/config
137137
## Next steps
138138

139139
To access Coder through a secure domain, review our guides on configuring and
140-
using [SSL certificates](../../guides/ssl-certificates/index.md).
140+
using [TLS certificates](../../guides/tls-certificates/index.md).
141141

142142
Once complete, see our page on [installation](../installation.md).

0 commit comments

Comments
 (0)