I am using laravel websocket in my laravel project. In broadcasting.php, there is pusher configuration like this below:
'pusher' => [
'driver' => 'pusher',
'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'),
'options' => [
'cluster' => env('PUSHER_APP_CLUSTER'),
'encrypted' => false,
'host' => '127.0.0.1',
'port' => 6001,
'scheme' => 'http'
],
],
My question is what will be the value of host here when on live server ? My domain is https://test.something.domain.
Also can I keep the port number 6001 on live server as in local ?