Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e311e9e

Browse files
authored
chore: correct disabling direct and STUN; add vs code remote required URLs (#10830)
* chore: correct disabling direct and STUN; add vs code remote required URLs * chore: offline docs
1 parent 491e0e3 commit e311e9e

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

docs/install/offline.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ services:
165165
# ...
166166
environment:
167167
CODER_TELEMETRY_ENABLE: "false" # Disable telemetry
168-
CODER_DERP_SERVER_STUN_ADDRESSES: "" # Only use relayed connections
168+
CODER_BLOCK_DIRECT: "true" # force SSH traffic through control plane's DERP proxy
169+
CODER_DERP_SERVER_STUN_ADDRESSES: "disable" # Only use relayed connections
169170
CODER_UPDATE_CHECK: "false" # Disable automatic update checks
170171
database:
171172
image: registry.example.com/postgres:13
@@ -197,6 +198,9 @@ coder:
197198
# Disable automatic update checks
198199
- name: "CODER_UPDATE_CHECK"
199200
value: "false"
201+
# force SSH traffic through control plane's DERP proxy
202+
- name: CODER_BLOCK_DIRECT
203+
value: "true"
200204
# Only use relayed connections
201205
- name: "CODER_DERP_SERVER_STUN_ADDRESSES"
202206
value: "disable"
@@ -236,3 +240,19 @@ Coder is installed.
236240
- open-vsx.org (optional if someone would use code-server)
237241
- registry.terraform.io (to create and push template)
238242
- v2-licensor.coder.com (developing Coder in Coder)
243+
244+
## JetBrains IDEs
245+
246+
Gateway, JetBrains' remote development product that works with Coder,
247+
[has documented offline deployment steps.](../ides/gateway.md#jetbrains-gateway-in-an-offline-environment)
248+
249+
## Microsoft VS Code Remote - SSH
250+
251+
Installation of the
252+
[Visual Studio Code Remote - SSH extension](https://code.visualstudio.com/docs/remote/ssh)
253+
(for connecting a local VS Code to a remote Coder workspace) requires that your
254+
local machine has outbound HTTPS (port 443) connectivity to:
255+
256+
- update.code.visualstudio.com
257+
- vscode.blob.core.windows.net
258+
- \*.vo.msecnd.net

0 commit comments

Comments
 (0)