Skip to content

Commit 7cb6ad4

Browse files
Change exposed HTTP port from 8080 to 8000 (#2779)
1 parent 8cd413b commit 7cb6ad4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sandboxes/expose_http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ await sandbox.writeTextFile(
1212
"Deno.serve(() => new Response('Hello from Sandboxes'));",
1313
);
1414
const runtime = await sandbox.createJsRuntime({ entrypoint: "server.js" });
15-
const publicUrl = await sandbox.exposeHttp({ port: 8080 });
15+
const publicUrl = await sandbox.exposeHttp({ port: 8000 });
1616
console.log(publicUrl); // https://<random>.sandbox.deno.net
1717
```
1818

0 commit comments

Comments
 (0)