2026-06-27 21:44:44 +00:00
|
|
|
<?php
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
function mqtt_publish(string $topic, string $msg): void {
|
2026-07-16 23:10:43 +00:00
|
|
|
// broker Proxmox (CT106) por TLS; 127.0.0.1:1883 era de um mosquitto
|
|
|
|
|
// local que já não existe (corrigido 2026-07-16)
|
2026-06-27 21:44:44 +00:00
|
|
|
$cmd = sprintf(
|
2026-07-16 23:10:43 +00:00
|
|
|
'mosquitto_pub -h mqtt.xupas.mywire.org -p 8883 --capath /etc/ssl/certs -u xupa -P xupa -t %s -m %s',
|
2026-06-27 21:44:44 +00:00
|
|
|
escapeshellarg($topic),
|
|
|
|
|
escapeshellarg($msg)
|
|
|
|
|
);
|
|
|
|
|
shell_exec($cmd . " > /dev/null 2>&1");
|
|
|
|
|
}
|