mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-29 04:09:42 +00:00
Merge branch 'feat/add-proxy-protocol-support' into dev
This commit is contained in:
commit
560974f7d2
11 changed files with 218 additions and 40 deletions
|
|
@ -128,7 +128,10 @@ export const resources = sqliteTable("resources", {
|
|||
skipToIdpId: integer("skipToIdpId").references(() => idp.idpId, {
|
||||
onDelete: "cascade"
|
||||
}),
|
||||
headers: text("headers") // comma-separated list of headers to add to the request
|
||||
headers: text("headers"), // comma-separated list of headers to add to the request
|
||||
proxyProtocol: integer("proxyProtocol", { mode: "boolean" }).notNull().default(false),
|
||||
proxyProtocolVersion: integer("proxyProtocolVersion").default(1)
|
||||
|
||||
});
|
||||
|
||||
export const targets = sqliteTable("targets", {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue