www/api/mqtt.php

14 lines
477 B
PHP
Raw Normal View History

2026-06-27 21:44:44 +00:00
<?php
declare(strict_types=1);
function mqtt_publish(string $topic, string $msg): void {
// 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(
'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");
}