mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-28 19:59:54 +00:00
feat(schema): add TLS server name column to target healthcheck tables
This commit is contained in:
parent
02fbc279b5
commit
bd3d339905
2 changed files with 4 additions and 2 deletions
|
|
@ -195,7 +195,8 @@ export const targetHealthCheck = sqliteTable("targetHealthCheck", {
|
|||
}).default(true),
|
||||
hcMethod: text("hcMethod").default("GET"),
|
||||
hcStatus: integer("hcStatus"), // http code
|
||||
hcHealth: text("hcHealth").default("unknown") // "unknown", "healthy", "unhealthy"
|
||||
hcHealth: text("hcHealth").default("unknown"), // "unknown", "healthy", "unhealthy"
|
||||
hcTlsServerName: text("hcTlsServerName"),
|
||||
});
|
||||
|
||||
export const exitNodes = sqliteTable("exitNodes", {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue