www/config.php
2026-06-27 21:44:44 +00:00

12 lines
256 B
PHP

<?php
return [
'host' => 'mqtt.xupas.mywire.org',
'port' => 8883,
'clientId' => 'php-web-' . bin2hex(random_bytes(3)),
'username' => 'xupa',
'password' => 'xupa',
'clean' => true,
'keepalive'=> 60,
'timeout' => 5,
];