Make the email optional

This commit is contained in:
Owen
2026-09-10 15:35:26 -04:00
parent 94f2e579d1
commit 738a790b3d
+1 -1
View File
@@ -215,7 +215,7 @@ export const privateConfigSchema = z
.string() .string()
.url() .url()
.default("https://acme-v02.api.letsencrypt.org/directory"), .default("https://acme-v02.api.letsencrypt.org/directory"),
contact_email: z.string().email(), contact_email: z.string().email().optional(),
acme_account_key_path: z acme_account_key_path: z
.string() .string()
.default("./config/account.key"), .default("./config/account.key"),