Skip to main content
Module

x/pagic/deps.ts>server.ServerInit

A static site generator powered by Deno + React
Latest
interface server.ServerInit
import { type server } from "https://deno.land/x/pagic@v1.6.3/deps.ts";
const { ServerInit } = server;

Options for running an HTTP server.

Properties

optional
addr: string

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.