When an additional proxy is in front, such an error generally means that the proxy isn’t proxying websocket connections correctly, which requires some extra configuration.
In nginx config, this can look like:
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
...
location / {
...
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
-Min
--
You received this message because you are subscribed to the Google Groups "Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jupyter+unsubscribe@googlegroups.com.
To post to this group, send email to jup...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/0e2ee5c9-b42c-425b-b5f2-74b15c9535f6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.