sreyansjain
Hello,
I am trying to get server sent events to work with Phoenix. And I can get it to work successfully over http.
Following are the steps i followed -
Add mime type to config.exs
config :mime, :types, %{
"text/event-stream" => ["sse"]
}
In my controller I have
defmodule MyAppWeb.NotificationController do
use MyAppWeb, :controller
# alias Phoenix.PubSub
def index(conn, _params) do
conn =
conn
|> put_resp_header("Cache-Control", "no-cache")
|> put_resp_header("connection", "keep-alive")
|> put_resp_header("Content-Type", "text/event-stream; charset=utf-8")
|> put_resp_header("Access-Control-Allow-Origin", "*")
|> send_chunked(200)
IO.puts("===============")
PubSub.subscribe(
self(),
:notification
)
|> IO.inspect()
IO.puts("===============")
IO.inspect(self())
sse_loop(conn, self())
end
defp sse_loop(conn, pid) do
# receive is what stops the router from processing
# and waits for an event to come in
receive do
# Send updates when :cagg is finished.
{:notification, :done} ->
# Fetch notification
IO.inspect("*************************")
# Send update.
chunk(conn, "data: message\n\n")
# Wait for next publish.
sse_loop(conn, pid)
# Stop SSE if this conn is actually down.
# Ignore other processes finishing.
# Notice the "^" in front of pid.
{:DOWN, _reference, :process, ^pid, _type} ->
nil
# Don't stop SSE because of unrelated events.
other ->
sse_loop(conn, pid)
end
end
end
In the router I have
get "/notification", NotificationController, :index
Also need to set idle_timeout for cowboy to infinity otherwise it times out after 60secs
So in the dev.exs file I have
http: [port: 8066, compress: true, protocol_options: [idle_timeout: :infinity]],
https: [
port: 8077,
compress: true,
cipher_suite: :strong,
keyfile: "priv/keys/localhost.key",
certfile: "priv/keys/localhost.cert",
protocol_options: [idle_timeout: :infinity]
],
In the template I have simple javascript for SSE
<script>
let eventSource = new EventSource("/notification");
eventSource.onmessage = function(event) {
console.log("New message", event.data);
};
</script>
I got great help from this blog - Server Sent Events with Elixir
Everything works over http. However for https it doesn’t work.
I get this error
GET https://localhost:8077/notification net::ERR_HTTP2_PROTOCOL_ERROR
Request your kind help.
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Other Trending Topics
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
Latest Phoenix Threads
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #ai
- #graphql
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
sreyansjain
Whole thing works well over https when I use a real domain and a valid certificate. The issue seems to be there only with localhost.
I am still trying to figure out how to make it work over localhost using https.
vfsoraki
For local certificates, I use makecert to generate valid certificates for local domains. I am on Linux, but this or similar tools should be available for other OSes.
I then add my local domains to
/etc/hostsand I also have a local Nginx configured to serve my local projects using their respective local domains.Should be easy to set up. If you’re having a problem, reply here.
sreyansjain
Thanks. I will try it out.
hauleth
If you are using systemd-resolved then you can use
*.localhostwithout editing/etc/hosts(whole domain should resolve to loopback address).vfsoraki
Nice to know. I am indeed using it.
But I’m not using
*.localhost.Exadra37
Phoenix has a built-in tool for this:
Check instructions at
config/dev.exs:vfsoraki
Is is locally trusted? I can’t find it if docs mention this anywhere.
Exadra37
No, you need to allow the certificate when the browser prompts you.
vfsoraki
mkcertsmakes them trusted locally, which is a nice thing.Exadra37
But also creates certificates for
example.comand I don’t like it overriding a website that exists:I usually prefer Bash for this type of tasks, and I have wrote a script to do it. I use it in my docker builds or from my localhost host when needed.