1
0

HA-Webhook Beispiel korrigiert

This commit is contained in:
Anna Christina Naß 2025-07-07 16:27:19 +02:00
parent ce5baaac35
commit 730e1a044c
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ Das Paßwort ist hier nur *plweb* - es sollte besser ein anderes benutzt werden.
In der Datei `config.php` können folgende Parameter eingestellt werden:
```php
$hawebhook = "http://homeassistant:8123/webhook/plweb";
$hawebhook = "http://homeassistant:8123/api/webhook/plweb";
$dbconnstring = "host=localhost dbname=plweb user=plweb password=plweb";
$test_url = "https://example.com/plweb/test.php?";
```

View File

@ -1,6 +1,6 @@
<?php
$hawebhook = "http://homeassistant:8123/webhook/plweb"; // Webhook-URL von Home Assistant
$hawebhook = "http://homeassistant:8123/api/webhook/plweb"; // Webhook-URL von Home Assistant
$dbconnstring = "host=localhost dbname=plweb user=plweb password=plweb";
$test_url = "https://example.com/plweb/test.php?";