8000 feat(vscode-web): support hosting on a subpath with `subdomain=false` by Emyrk · Pull Request #288 · coder/modules · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

feat(vscode-web): support hosting on a subpath with subdomain=false #288

Merged
merged 18 commits into from
Oct 21, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
reference from 'me'
  • Loading branch information
Emyrk committed Aug 29, 2024
commit 3335b2a334ae15c86727043212750988f223239a
2 changes: 1 addition & 1 deletion vscode-web/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ resource "coder_script" "vscode-web" {
FOLDER : var.folder,
AUTO_INSTALL_EXTENSIONS : var.auto_install_extensions,
SERVER_BASE_PATH : format("/%s/%s.%s/apps/vscode-web/",
data.coder_workspace_owner.name, data.coder_workspace.name, var.agent_id),
data.coder_workspace_owner.me.name, data.coder_workspace.me.name, var.agent_id),
})
run_on_start = true

Expand Down
0