Files
caddy-proxy-manager/drizzle/0015_l4_proxy_hosts.sql
akanealw 99819b70ff
Some checks failed
Build and Push Docker Images (Trusted) / build-and-push (., docker/caddy/Dockerfile, caddy) (push) Has been cancelled
Build and Push Docker Images (Trusted) / build-and-push (., docker/l4-port-manager/Dockerfile, l4-port-manager) (push) Has been cancelled
Build and Push Docker Images (Trusted) / build-and-push (., docker/web/Dockerfile, web) (push) Has been cancelled
Tests / test (push) Has been cancelled
added caddy-proxy-manager for testing
2026-04-21 22:49:08 +00:00

18 lines
604 B
SQL
Executable File

CREATE TABLE `l4_proxy_hosts` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`name` text NOT NULL,
`protocol` text NOT NULL,
`listen_address` text NOT NULL,
`upstreams` text NOT NULL,
`matcher_type` text NOT NULL DEFAULT 'none',
`matcher_value` text,
`tls_termination` integer NOT NULL DEFAULT false,
`proxy_protocol_version` text,
`proxy_protocol_receive` integer NOT NULL DEFAULT false,
`owner_user_id` integer REFERENCES `users`(`id`) ON DELETE SET NULL,
`meta` text,
`enabled` integer NOT NULL DEFAULT true,
`created_at` text NOT NULL,
`updated_at` text NOT NULL
);