We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4f1c05 commit bfe731fCopy full SHA for bfe731f
src/node/entry.ts
@@ -38,11 +38,12 @@ const commit = pkg.commit || "development"
38
const main = async (args: Args, cliArgs: Args, configArgs: Args): Promise<void> => {
39
if (args["coder-bind"]) {
40
// If we're being exposed to the cloud, we listen on a random address and disable auth.
41
- args = {
42
- ...args,
+ cliArgs = {
+ ...cliArgs,
43
host: "localhost",
44
port: 0,
45
auth: AuthType.None,
46
+ socket: undefined,
47
}
48
logger.info("coder-bind: disabling auth and listening on random localhost port")
49
0 commit comments