Skip to content

Commit

Permalink
added mqtt example for tls encryption
Browse files Browse the repository at this point in the history
  • Loading branch information
hardoverflow committed Oct 18, 2023
1 parent a36158d commit 10f7d31
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/reference/configuration/mqtt.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Stellt die Konnektivität mit einem MQTT-Broker her.
Bei bestehender Verbindung pusht evcc automatisch alle internen Werte via MQTT-Broker auf das angegebene Topic und empfängt dort auch Änderungen.
Siehe dazu auch die Dokumentation zur [`MQTT API`](/docs/reference/api/#mqtt-api).

---

## MQTT ohne Verschlüsselung

**Beispiel**:

```yaml
Expand All @@ -22,6 +26,22 @@ mqtt:

---

## MQTT mit TLS-Verschlüsselung

Beispiel:

```yaml
# mqtt message broker
mqtt:
broker: tls://localhost:8883
topic: evcc # root topic for publishing, set empty to disable publishing
# clientid: foo
# user:
# password:
```

---

## Erforderliche Parameter

### `broker`
Expand Down

0 comments on commit 10f7d31

Please sign in to comment.