Skip to content

Commit c995988

Browse files
authored
Set proxy URI to domain proxy when possible (#6115)
This will make the ports panel use it instead of the default path-based proxy.
1 parent a44bd71 commit c995988

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

src/node/cli.ts

+3
Original file line numberDiff line numberDiff line change
@@ -571,6 +571,9 @@ export async function setDefaults(cliArgs: UserProvidedArgs, configArgs?: Config
571571
// Filter duplicate proxy domains and remove any leading `*.`.
572572
const proxyDomains = new Set((args["proxy-domain"] || []).map((d) => d.replace(/^\*\./, "")))
573573
args["proxy-domain"] = Array.from(proxyDomains)
574+
if (args["proxy-domain"].length > 0 && !process.env.VSCODE_PROXY_URI) {
575+
process.env.VSCODE_PROXY_URI = `{{port}}.${args["proxy-domain"][0]}`
576+
}
574577

575578
if (typeof args._ === "undefined") {
576579
args._ = []

test/unit/node/cli.test.ts

+26
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ describe("parser", () => {
4343
delete process.env.PASSWORD
4444
delete process.env.CS_DISABLE_FILE_DOWNLOADS
4545
delete process.env.CS_DISABLE_GETTING_STARTED_OVERRIDE
46+
delete process.env.VSCODE_PROXY_URI
4647
console.log = jest.fn()
4748
})
4849

@@ -457,6 +458,31 @@ describe("parser", () => {
457458
port: 8082,
458459
})
459460
})
461+
462+
it("should not set proxy uri", async () => {
463+
await setDefaults(parse([]))
464+
expect(process.env.VSCODE_PROXY_URI).toBeUndefined()
465+
})
466+
467+
it("should set proxy uri", async () => {
468+
await setDefaults(parse(["--proxy-domain", "coder.org"]))
469+
expect(process.env.VSCODE_PROXY_URI).toEqual("{{port}}.coder.org")
470+
})
471+
472+
it("should set proxy uri to first domain", async () => {
473+
await setDefaults(
474+
parse(["--proxy-domain", "*.coder.com", "--proxy-domain", "coder.com", "--proxy-domain", "coder.org"]),
475+
)
476+
expect(process.env.VSCODE_PROXY_URI).toEqual("{{port}}.coder.com")
477+
})
478+
479+
it("should not override existing proxy uri", async () => {
480+
process.env.VSCODE_PROXY_URI = "foo"
481+
await setDefaults(
482+
parse(["--proxy-domain", "*.coder.com", "--proxy-domain", "coder.com", "--proxy-domain", "coder.org"]),
483+
)
484+
expect(process.env.VSCODE_PROXY_URI).toEqual("foo")
485+
})
460486
})
461487

462488
describe("cli", () => {

0 commit comments

Comments
 (0)