www/config.php

12 lines
245 B
PHP
Raw Normal View History

2026-05-11 22:31:48 +00:00
<?php
return [
'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,
];