Skip to content

Instantly share code, notes, and snippets.

@matthunz
Created August 11, 2017 04:43
Show Gist options
  • Select an option

  • Save matthunz/680aba34475059bea33199a8cea17d47 to your computer and use it in GitHub Desktop.

Select an option

Save matthunz/680aba34475059bea33199a8cea17d47 to your computer and use it in GitHub Desktop.
full_url = fn ->
port = case @port do
80 ->
""
_ ->
":" <> Integer.to_string(@port)
end
"http://" <> conn.host <> port <> "/" <> short_url
end
conn |> Plug.Conn.resp(200, full_url.())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment