import { type ServerInit } from "https://deno.land/std@0.114.0/http/mod.ts";
Options for running an HTTP server.
Properties
Optionally specifies the address to listen on, in the form "host:port".
If the port is omitted, :80
is used by default for HTTP when invoking
non-TLS methods such as Server.listenAndServe
, and :443
is
used by default for HTTPS when invoking TLS methods such as
Server.listenAndServeTls
.
If the host is omitted, the non-routable meta-address 0.0.0.0
is used.
handler: Handler
The handler to invoke for individual HTTP requests.