Laravel Reverb not connecting, everytime I make changes
I just tried laravel reverb, and I noticed that everytime I make some changes in the code, I can’t connect to the websocket.
Laravel reverb in production : should i run php artisan reverb:start on my vps.?
i install laravel app with reverb in local envirement and every thing works great ..
onOpen and onClose event for laravel reverb
How can I get which user joined or left from channel in laravel reverb.
Laravel Reverb Not Work In Production Apache
Reverb Version @beta Laravel Version ^11.0 PHP Version 8.2 Description Hi, I’m having problems with the reverb in production, remembering that ‘locally’ everything works. (apache + lightsail aws + lamp 8.2) Follow my .env config: BROADCAST_CONNECTION=reverb REVERB_SERVER_HOST=0.0.0.0 REVERB_SERVER_PORT=8080 REVERB_APP_ID=xxx REVERB_APP_KEY=xxx REVERB_APP_SECRET=xxx REVERB_HOST=”mydomain.com” REVERB_PORT=443 REVERB_SCHEME=https VITE_REVERB_APP_KEY=”${REVERB_APP_KEY}” VITE_REVERB_HOST=”${REVERB_HOST}” VITE_REVERB_PORT=”${REVERB_PORT}” VITE_REVERB_SCHEME=”${REVERB_SCHEME}” routes/channel.php onlye: Broadcast::channel(‘update_coins.{id}’, function ($user, $id) { […]