defmodule MasterProxy.Plug do def init(options) do options end def call(conn, _opts) do if conn.request_path =~ ~r{^/other_app} do MyOtherApp.Endpoint.call(conn, []) else MyApp.Endpoint.call(conn, []) end end end