NaN
:gun_error : {:stream_error, :protocol_error, :"Stream reset by server."}
In Phoenix. The stream ref is created, but somewhere before upgrade the above error presents itself. The request is never passed to &Node.Socket.init/2 Non-tls connection work fine.
Certs from GlobalSign. The same cert works fine over the web for Phx.
Any ideas??
{:gun, "~> 2.0"}
{:plug_cowboy, "~> 2.5"}
server:
defmodule Node.Server do
use GenServer
def start_link(opts) do
GenServer.start_link(__MODULE__, opts, name: __MODULE__)
end
def init(opts) do
routes = [
{:_,
[
{"/", Node.Socket, []}
]}
]
# Compile the routes into a dispatch list
dispatch = :cowboy_router.compile(routes)
{protocol, start_fn, opts} =
case System.get_env("IS_DOCKER") do
"true" ->
{:https, &:cowboy.start_tls/3,
[
{:port, opts.port},
{:cacertfile, "/app/priv/ssl/http/ca.crt"},
{:certfile, "/app/priv/ssl/http/server.crt"},
{:keyfile, "/app/priv/ssl/http/server.key"},
]}
_ ->
{:http, &:cowboy.start_clear/3,
[
{:port, opts.port}
]}
end
{:ok, _} =
start_fn.(
protocol,
opts,
%{
env: %{dispatch: dispatch}
}
)
{:ok, %{}}
end
end
client:
defp connect_to_node({admin_domain, admin_port, port} = node, token, state) do
admin_domain = admin_domain |> String.to_charlist()
options =
case System.get_env("IS_DOCKER") do
"true" ->
%{
transport: :tls,
tls_opts: [
{:port, port},
{:verify, :verify_peer},
{:server_name_indication, admin_domain},
{:customize_hostname_check, [{:match_fun, :public_key.pkix_verify_hostname_match_fun(:https)}]},
{:cacerts, :public_key.cacerts_get()}
]
}
_ ->
%{
tcp_opts: [{:port, port}]
}
end
{:ok, conn_pid} = :gun.open(admin_domain, admin_port, options)
Logger.debug("Attempting to connect to Admin Node @ #{admin_domain}:#{admin_port} from local port #{port}")
case :gun.await_up(conn_pid) do
{:ok, _} ->
token = token || fetch_token()
headers = %{
"authorization" => "#{token}"
}
# created fine here
stream_ref = :gun.ws_upgrade(conn_pid, ~c"/", headers) |> IO.inspect()
Node.Identity.set(%{
connected_node: node
})
if Node.Identity.get().primary_node != node do
:timer.send_after(900_000, self(), :connect_to_primary)
end
{:ok, %{state | conn_pid: conn_pid, stream_ref: stream_ref}}
{:error, error} ->
Logger.debug("Failed to connect to Admin Node @ #{admin_domain}:#{admin_port} from local port #{port} | Error: #{inspect(error)}")
:gun.shutdown(conn_pid)
{:error, state}
end
end
Node.Socket.inti : (again, non-tls auths fine, but this is never called when using tls)
def init(req, _opts) do
Logger.debug("Initiating websocket connection with request: #{inspect(req)}")
case Map.get(req.headers, "authorization") do
nil ->
:cowboy_req.reply(401, req)
{:cowboy_websocket, req, %{}}
auth ->
{:ok, shared_key} = Node.Identity.shared_key()
case Node.Auth.decrypt(auth, shared_key) do
{:ok, _decrypted} ->
{:cowboy_websocket, req, %{}, %{idle_timeout: :infinity}}
_ ->
:cowboy_req.reply(401, req)
{:cowboy_websocket, req, %{}}
end
end
end
1/9/23 ~6:30 moved due to cat mistake
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Tyson
My guess would be TLS handshake failure because your cacerts don’t match. Where are you getting
/app/priv/ssl/http/*from on the server?NaN
GlobalSign
NaN
It gets past the handshake. fails at upgrade, unless I dont understand the process.
Tyson
What if you configure the client and server to both use the GlobalSign cacert?
NaN
same error:
Tyson
Does it help if you use a self-signed cert?
NaN
The same cert works fine over the web.
Tyson
Then we’ll have to wait for some smarter experts to show up
NaN
No worries. TY… its just as likely you mention something that solves it. worst case someone learns something.
NaN
I have used multiple sets of
tls_optsat this point.verify_none, withcacerts, with acacertfile, etc… all of them render the same error fromrst_stream_frameunless of course I dont pass the opts needed to get past handshake. In which case I can see the hand shake fail on server and clientthis is the only place I can find in the code that produces the error… any idea why?