2026-05-11 22:31:48 +00:00
|
|
|
<?php
|
|
|
|
|
return [
|
2026-05-17 19:48:11 +00:00
|
|
|
'host' => 'mqtt.xupas.mywire.org',
|
|
|
|
|
'port' => 8883,
|
2026-05-11 22:31:48 +00:00
|
|
|
'clientId' => 'php-web-' . bin2hex(random_bytes(3)),
|
|
|
|
|
'username' => 'xupa',
|
|
|
|
|
'password' => 'xupa',
|
|
|
|
|
'clean' => true,
|
|
|
|
|
'keepalive'=> 60,
|
|
|
|
|
'timeout' => 5,
|
|
|
|
|
];
|