add option to set TLS Server Name

This commit is contained in:
Matthias Palmetshofer
2025-04-09 23:42:50 +02:00
parent 0450f62108
commit 674316aa46
6 changed files with 84 additions and 11 deletions

View File

@@ -77,7 +77,8 @@ export const resources = sqliteTable("resources", {
applyRules: integer("applyRules", { mode: "boolean" })
.notNull()
.default(false),
enabled: integer("enabled", { mode: "boolean" }).notNull().default(true)
enabled: integer("enabled", { mode: "boolean" }).notNull().default(true),
tlsServerName: text("tlsServerName").notNull().default("")
});
export const targets = sqliteTable("targets", {