Variable CopyResponseHeadersHandlerSchemaConst
CopyResponseHeadersHandlerSchema: ZodObject<
{
exclude: ZodOptional<ZodArray<ZodString, "many">>;
include: ZodOptional<ZodArray<ZodString, "many">>;
} & { handler: ZodLiteral<"copy_response_headers"> },
"strip",
ZodTypeAny,
{
exclude?: string[];
handler: "copy_response_headers";
include?: string[];
},
{
exclude?: string[];
handler: "copy_response_headers";
include?: string[];
},
> = ...
Copy response headers handler schema - copy headers from subrequest
Copies response headers from a reverse proxy subrequest. Can include or exclude specific headers.