From fb4959bb5a447934a84b06a442be3f27268996d6 Mon Sep 17 00:00:00 2001 From: masnwilliams <43387599+masnwilliams@users.noreply.github.com> Date: Thu, 3 Sep 2026 03:20:31 +0000 Subject: [PATCH] docs(browsers): document live view domains --- browsers/live-view.mdx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/browsers/live-view.mdx b/browsers/live-view.mdx index 9dfc3950..90e6503d 100644 --- a/browsers/live-view.mdx +++ b/browsers/live-view.mdx @@ -74,12 +74,15 @@ The live view URL can be embedded in an iframe to integrate the browser view int To enable clipboard sharing, add `allow="autoplay; clipboard-read; clipboard-write"` to the iframe element. -If your application uses a **Content Security Policy (CSP)**, you'll need to add the following directives to allow the live view iframe and its WebSocket connection: +Kernel serves live views from `*.onkernel.com:8443` and `*.kernel.sh:8443`. If your application uses a **Content Security Policy (CSP)**, you must add the following directives to allow the live view iframe and its WebSocket connection: ``` -frame-src https://*.onkernel.com:8443; +frame-src https://*.onkernel.com:8443 + https://*.kernel.sh:8443; connect-src https://*.onkernel.com:8443 - wss://*.onkernel.com:8443; + wss://*.onkernel.com:8443 + https://*.kernel.sh:8443 + wss://*.kernel.sh:8443; ```