We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cbbd13 commit 84da605Copy full SHA for 84da605
docs/networking.md
@@ -22,6 +22,18 @@ NAT between workspaces and coder server.
22
Users connect to the coder server's dashboard and API through its `ACCESS_URL`
23
as well. There must not be a NAT between users and the coder server.
24
25
+Template admins can overwrite the site-wide access URL at the template level by
26
+leveraging the `url` argument when [defining the Coder provider](https://registry.terraform.io/providers/coder/coder/latest/docs#url):
27
+
28
+```terraform
29
+provider "coder" {
30
+ url = "https://coder.namespace.svc.cluster.local"
31
+}
32
+```
33
34
+This is useful when debugging connectivity issues between the workspace agent and
35
+the Coder server.
36
37
## Web Apps
38
39
The coder servers relays dashboard-initiated connections between the user and
0 commit comments