We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have verk_web configured as a separate app in our umbrella project (not mounted in any phoenix apps).
We have one proxy app that kindof plugs requests to the other phoenix endpoints.
Shortened:
defmodule ProxyWeb.Endpoint do @domains %{ "admin.app1.com" => AdminWeb.Endpoint, "verk.app1.com" => VerkWeb.Endpoint } def init(opts), do: opts def call(conn, _) do with domain <- get_domain(conn), endpoint <- Map.get(@domains, domain, @default_host) do endpoint.call(conn, endpoint.init(:supervisor, endpoint)) end end end
VerkWeb is totally fine here, except for websockets:
[info] Converted error Phoenix.Router.NoRouteError to 404 response [info] GET /socket/websocket
I'm not quite sure what I should do from here, but happy to provide more detail or even PR if we find it's a real issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have verk_web configured as a separate app in our umbrella project (not mounted in any phoenix apps).
We have one proxy app that kindof plugs requests to the other phoenix endpoints.
Shortened:
VerkWeb is totally fine here, except for websockets:
I'm not quite sure what I should do from here, but happy to provide more detail or even PR if we find it's a real issue.
The text was updated successfully, but these errors were encountered: