mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-13 11:22:30 +08:00
e5e13d86c2
* Serve iframes from another local port when running on http * Use relative hostname in local iframe URL * Simplify server start check * Use random iframe port when Livebook runs on a random port * Rename space/ to iframe/ * LivebookWeb.IframePlug -> LivebookWeb.IframeEndpoint
26 lines
752 B
Elixir
26 lines
752 B
Elixir
defmodule LivebookSpaceWeb.Plug do
|
|
use Plug.Builder
|
|
|
|
plug Plug.Static,
|
|
from: {:livebook_space, "priv/static/iframe"},
|
|
at: "/iframe",
|
|
# Iframes are versioned, so we cache them for long
|
|
cache_control_for_etags: "public, max-age=31536000",
|
|
headers: [
|
|
# Enable CORS to allow Livebook fetch the content and verify its integrity
|
|
{"access-control-allow-origin", "*"},
|
|
{"content-type", "text/html; charset=utf-8"}
|
|
]
|
|
|
|
plug Plug.Static, from: :livebook_space, at: "/"
|
|
|
|
plug :not_found
|
|
|
|
defp not_found(%{path_info: [], method: "GET"} = conn, _) do
|
|
call(%{conn | path_info: ["index.html"], request_path: "/index.html"}, [])
|
|
end
|
|
|
|
defp not_found(conn, _) do
|
|
send_resp(conn, 404, "not found")
|
|
end
|
|
end
|