From 9a9ae649efe7ffa87c1f18ac8b3e992a6462f54c Mon Sep 17 00:00:00 2001 From: Owen Date: Mon, 27 Jul 2026 10:02:18 -0400 Subject: [PATCH] Add default to path Fix #3484 --- server/lib/blueprints/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/lib/blueprints/types.ts b/server/lib/blueprints/types.ts index cc9865533..828b3bd15 100644 --- a/server/lib/blueprints/types.ts +++ b/server/lib/blueprints/types.ts @@ -28,7 +28,7 @@ export const TargetHealthCheckSchema = z.object({ hostname: z.string(), port: z.int().min(1).max(65535), enabled: z.boolean().optional().default(true), - path: z.string().optional(), + path: z.string().optional().default("/"), scheme: z.string().optional(), mode: z.string().default("http"), interval: z.int().default(30),