mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-24 04:34:55 +02:00
move max connections from config to db
This commit is contained in:
parent
a0001aaa74
commit
21e9edd201
4 changed files with 6 additions and 5 deletions
|
@ -117,7 +117,8 @@ export const exitNodes = sqliteTable("exitNodes", {
|
|||
endpoint: text("endpoint").notNull(), // this is how to reach gerbil externally - gets put into the wireguard config
|
||||
publicKey: text("publicKey").notNull(),
|
||||
listenPort: integer("listenPort").notNull(),
|
||||
reachableAt: text("reachableAt") // this is the internal address of the gerbil http server for command control
|
||||
reachableAt: text("reachableAt"), // this is the internal address of the gerbil http server for command control
|
||||
maxConnections: integer("maxConnections")
|
||||
});
|
||||
|
||||
export const users = sqliteTable("user", {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue