Php 检查服务器上的laravel websocket

Php 检查服务器上的laravel websocket,php,laravel,amazon-web-services,amazon-ec2,websocket,Php,Laravel,Amazon Web Services,Amazon Ec2,Websocket,我正在尝试实现laravel websockets并尝试访问仪表板 地址将我带到本地计算机上的仪表板,但当我托管它并尝试时,它显示该页面不存在。 我正在使用laravel websockets包和AWS EC2实例作为宿主 broadcasting.php <?php return [ /* |-------------------------------------------------------------------------- | Default

我正在尝试实现laravel websockets并尝试访问仪表板

地址将我带到本地计算机上的仪表板,但当我托管它并尝试时,它显示该页面不存在。 我正在使用laravel websockets包和AWS EC2实例作为宿主

broadcasting.php

<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Default Broadcaster
    |--------------------------------------------------------------------------
    |
    | This option controls the default broadcaster that will be used by the
    | framework when an event needs to be broadcast. You may set this to
    | any of the connections defined in the "connections" array below.
    |
    | Supported: "pusher", "ably", "redis", "log", "null"
    |
    */

    'default' => env('BROADCAST_DRIVER', 'null'),

    /*
    |--------------------------------------------------------------------------
    | Broadcast Connections
    |--------------------------------------------------------------------------
    |
    | Here you may define all of the broadcast connections that will be used
    | to broadcast events to other systems or over websockets. Samples of
    | each available type of connection are provided inside this array.
    |
    */

    'connections' => [

        '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'),
                'useTLS' => false,
                'host' => '127.0.0.1',
                'port' => 6001,
                'scheme' => 'http'
            ],
        ],

        'ably' => [
            'driver' => 'ably',
            'key' => env('ABLY_KEY'),
        ],

        'redis' => [
            'driver' => 'redis',
            'connection' => 'default',
        ],

        'log' => [
            'driver' => 'log',
        ],

        'null' => [
            'driver' => 'null',
        ],

    ],

];