drupflare/drangler - v0.1.0
    Preparing search index...

    Interface ProbeOptions

    interface ProbeOptions {
        diagnostics?: boolean;
        kind?: "worker" | "vps" | "auto";
        path?: string;
        site?: string;
        skipEdge?: boolean;
        target: string;
        timeoutMs?: number;
    }
    Index
    diagnostics?: boolean

    also try /stats, which is PW_DIAGNOSTICS-gated and normally answers 404

    kind?: "worker" | "vps" | "auto"
    path?: string

    the Drupal path, which on a worker becomes ?path= and on a VPS becomes the URL path

    site?: string

    worker site identity, which selects the Durable Object

    skipEdge?: boolean

    bypass the edge tier so the probe reaches the object; /serve?edge=0

    target: string

    origin to probe, with or without a scheme; https is assumed

    timeoutMs?: number