Need help with websockets in rails

By default, ActionCable in Rails uses a single WebSocket connection (/cable). However, I have a requirement for two separate WebSocket connections:

  1. A server-side WebSocket connection that can communicate with other servers.
  2. A client-side WebSocket connection that interacts with the client browser.

From my understanding, ActionCable does not natively support multiple WebSocket connections. Is it possible to achieve this setup in Rails? If not, are there any alternatives or strategies (e.g., external libraries, architecture changes) to implement multiple WebSocket connections effectively in a Rails-based application?