chore(docs): apply async suggestions from #10915 (#10976)

This commit is contained in:
Cian Johnston
2023-12-05 09:01:03 +00:00
committed by GitHub
parent dff53d0787
commit d70f9ea26c

View File

@ -148,7 +148,7 @@ still be able to reach their workspaces, connection performance may be degraded.
> **Note:** This may also be shown if you have > **Note:** This may also be shown if you have
> [forced websocket connections for DERP](../cli/server.md#--derp-force-websockets). > [forced websocket connections for DERP](../cli/server.md#--derp-force-websockets).
**Solution:** ensure that any configured reverse proxy does not strip the **Solution:** ensure that any proxies you use allow connection upgrade with the
`Upgrade: derp` header. `Upgrade: derp` header.
### EDERP02 ### EDERP02
@ -160,12 +160,12 @@ DERP servers. Clients will fall back to use the remaining DERP servers, but
performance may be impacted for clients closest to the unhealthy DERP server. performance may be impacted for clients closest to the unhealthy DERP server.
**Solution:** Ensure that the DERP server is available and reachable over the **Solution:** Ensure that the DERP server is available and reachable over the
network on port 443, for example: network, for example:
```shell ```shell
curl -v "https://coder.company.com:443/derp" curl -v "https://coder.company.com/derp"
# Expected output: # Expected output:
# * Trying XXX.XXX.XXX.XXX:443 # * Trying XXX.XXX.XXX.XXX
# * Connected to https://coder.company.com (XXX.XXX.XXX.XXX) port 443 (#0) # * Connected to https://coder.company.com (XXX.XXX.XXX.XXX) port 443 (#0)
# DERP requires connection upgrade # DERP requires connection upgrade
``` ```
@ -199,11 +199,11 @@ Access URL.
running Coder, using standard troubleshooting tools like `curl`: running Coder, using standard troubleshooting tools like `curl`:
```shell ```shell
curl -v "https://coder.company.com:443/" curl -v "https://coder.company.com"
``` ```
2. Ensure that any reverse proxy that is sitting in front of Coder's configured 2. Ensure that any reverse proxy that is serving Coder's configured access URL
access URL is not stripping the HTTP header `Upgrade: websocket`. allows connection upgrade with the header `Upgrade: websocket`.
### EWS02 ### EWS02
@ -265,7 +265,7 @@ _One or more Workspace Proxies Unhealthy_
**Problem:** One or more workspace proxies are not reachable. **Problem:** One or more workspace proxies are not reachable.
**Solution:** Ensure that Coder can establish a connection to the configured **Solution:** Ensure that Coder can establish a connection to the configured
workspace proxies on port 443. workspace proxies.
## EUNKNOWN ## EUNKNOWN