@@ -165,7 +165,8 @@ services:
165
165
# ...
166
166
environment :
167
167
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
169
170
CODER_UPDATE_CHECK : " false" # Disable automatic update checks
170
171
database :
171
172
image : registry.example.com/postgres:13
@@ -197,6 +198,9 @@ coder:
197
198
# Disable automatic update checks
198
199
- name : " CODER_UPDATE_CHECK"
199
200
value : " false"
201
+ # force SSH traffic through control plane's DERP proxy
202
+ - name : CODER_BLOCK_DIRECT
203
+ value : " true"
200
204
# Only use relayed connections
201
205
- name : " CODER_DERP_SERVER_STUN_ADDRESSES"
202
206
value : " disable"
@@ -236,3 +240,19 @@ Coder is installed.
236
240
- open-vsx.org (optional if someone would use code-server)
237
241
- registry.terraform.io (to create and push template)
238
242
- 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