12 lines
324 B
PHP
12 lines
324 B
PHP
<?php
|
|
return [
|
|
'host' => '192.168.10.200', // depois trocas para 'estica.bot.nu'
|
|
'port' => 1883, // 8883 se fores usar TLS mais tarde
|
|
'clientId' => 'php-web-' . bin2hex(random_bytes(3)),
|
|
'username' => 'xupa',
|
|
'password' => 'xupa',
|
|
'clean' => true,
|
|
'keepalive'=> 60,
|
|
'timeout' => 5,
|
|
];
|