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
To enable WebSockets notifications, an external reverse proxy is necessary, and it must be configured to do the following:
Route the /notifications/hub endpoint to the WebSocket server, by default at port 3012, making sure to pass the Connection and Upgrade headers. (Note the port can be changed with WEBSOCKET_PORT variable)
Route everything else, including /notifications/hub/negotiate, to the standard Rocket server, by default at port 80.
So, if i understand correctly, only /notifications/hub should reach to WS port. Thus, pathTypeWs should be Exact instead of ImplementationSpecific for nginx-ingress-controller, right?
The text was updated successfully, but these errors were encountered:
Hey, i noticed that you are using
ImplementationSpecific
as default pathTypeWs at WS ingress part.As shown here:
And this is how you set the ingress template:
But according to the official documentation:
So, if i understand correctly, only
/notifications/hub
should reach to WS port. Thus, pathTypeWs should beExact
instead ofImplementationSpecific
for nginx-ingress-controller, right?The text was updated successfully, but these errors were encountered: