mirror of
https://github.com/coder/coder.git
synced 2025-07-18 14:17:22 +00:00
feat: add --derp-only flag to wsproxy (#8850)
This commit is contained in:
@ -0,0 +1 @@
|
||||
ALTER TABLE workspace_proxies DROP COLUMN derp_only;
|
8
coderd/database/migrations/000144_proxy_derp_only.up.sql
Normal file
8
coderd/database/migrations/000144_proxy_derp_only.up.sql
Normal file
@ -0,0 +1,8 @@
|
||||
BEGIN;
|
||||
|
||||
ALTER TABLE workspace_proxies
|
||||
ADD COLUMN "derp_only" BOOLEAN NOT NULL DEFAULT false;
|
||||
|
||||
COMMENT ON COLUMN workspace_proxies.derp_only IS 'Disables app/terminal proxying for this proxy and only acts as a DERP relay.';
|
||||
|
||||
COMMIT;
|
Reference in New Issue
Block a user