From 185e34bcd17e91820b6f3dbd6b5a42edc9428bbb Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Wed, 3 May 2023 13:26:38 -0600 Subject: [PATCH] optional http in reverse proxy --- lib/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types.ts b/lib/types.ts index 24a3984..1962c50 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -441,7 +441,7 @@ export type Effects = { port: number ssl: boolean } - http: { + http?: { // optional, will do TCP layer proxy only if not present headers: (headers: Record) => Record }