<?php

return [
    // Browser WebSocket listener.
    'ws_host' => '0.0.0.0',
    'ws_port' => 8080,

    // Local TCP bridge receiving events from the AMI listener.
    'tcp_port' => 8081,

    'log_dir' => __DIR__ . '/../../logs',

    // Replace with the exact origins allowed to open browser WebSockets.
    'allowed_origins' => [
        'http://localhost',
    ],

    // Set a strong client-specific key before enabling authentication.
    'require_auth' => false,
    'auth_key' => 'CHANGE_ME',

    'server_id' => 'CHANGE_ME',

    // Full client-specific CRM callback URL.
    'crm_endpoint' => 'CHANGE_ME',
];
