You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting the following error when running this proxy.
22:24:25.238 [notice] Application main_proxy_app exited: MainProxyApp.Application.start(:normal, []) returned an error: shutdown: failed to start child: MainProxyApp.Proxy
** (EXIT) an exception was raised:
** (ArgumentError) could not start Cowboy2 adapter, missing option :key/:keyfile
I just set up a new umbrella project for my server and can't run it due to this. This is the proxy file
defmodule MainProxyApp.Proxy do
use MainProxy.Proxy
@impl MainProxy.Proxy
def backends do
[
%{
domain: Application.get_env(:main_proxy_app, :language_league_api_server_url),
plug: LLServer.Web.Router
}
]
end
end