diff --git a/sandboxes/expose_http.md b/sandboxes/expose_http.md index b280feb55..b41b18c6e 100644 --- a/sandboxes/expose_http.md +++ b/sandboxes/expose_http.md @@ -12,7 +12,7 @@ await sandbox.writeTextFile( "Deno.serve(() => new Response('Hello from Sandboxes'));", ); const runtime = await sandbox.createJsRuntime({ entrypoint: "server.js" }); -const publicUrl = await sandbox.exposeHttp({ port: 8080 }); +const publicUrl = await sandbox.exposeHttp({ port: 8000 }); console.log(publicUrl); // https://.sandbox.deno.net ```