dev-lara I want to install reverb for using with real time chat and notification but I don't know how I can do it on the host , I know how to install on local environment but in server I don't .
sean I think the following steps should work. In your Opalstack control panel, create a new "Nginx Proxy Port" application and make a note of the app's port assignment. In a SSH session, run the following commands. This example assumes you're using PHP 8.3, your app Laravel app name is "my_app", your project subdirectory is named "project", that your new app's port assignment is 55555, and that your Reverb configuration is already set up in your project: source scl_source enable php83 cd ~/apps/my_app/project php artisan install:broadcasting # Edit your Reverb config to set the host to 127.0.0.1 and the port to 55555, then... php artisan reverb:start I think at that point the Reverb server should be running.