I have 3 projects that need to use websockets. I am planning to use Laravel-Websockets. For that I want to create a separate project that will be the Laravel-Websockets server.
It also has support for multiple apps: https://beyondco.de/docs/laravel-websockets/basic-usage/pusher#configuring-websocket-apps
But what happens if one of the projects needs more connections for example? The way Laravel-Websockets support multiple apps is simply by adding it to the config file, but all use the same port.
Is there a way to separate the apps using the Laravel-Websockets server into actual separate servers in this way? Or I am going to have to create another Laravel-Websockets server for each other project (And in this case it would just be better to install the server in the project itself and not separately)?
I just wanted to make a centralized place for Laravel-Websockets where I can handle all other projects that needs websockets support but I am not sure how to do it in case it needs more specific cofiguration