chore: update .env.example with Reverb TLS configuration

This commit is contained in:
idevakk
2026-03-05 15:34:39 +05:30
parent 4d8f808d97
commit bfc2662efb
4 changed files with 25 additions and 13 deletions

View File

@@ -34,7 +34,11 @@ return [
'path' => env('REVERB_SERVER_PATH', ''),
'hostname' => env('REVERB_HOST'),
'options' => [
'tls' => [],
'tls' => env('REVERB_TLS_CERT') ? [
'local_cert' => env('REVERB_TLS_CERT'),
'local_pk' => env('REVERB_TLS_KEY'),
'verify_peer' => false,
] : [],
],
'max_request_size' => env('REVERB_MAX_REQUEST_SIZE', 10_000),
'scaling' => [