diff --git a/README.md b/README.md index fa3f57f..5e131a4 100644 --- a/README.md +++ b/README.md @@ -23,21 +23,17 @@ Danach im Browser: **https://:8443** (selbstsigniertes Zertifikat, Warnung einmalig bestätigen). Im Einrichtungs-Assistenten kann auch direkt ein vorhandenes Backup (`.unf`) eingespielt werden. -## Wichtig: Inform-Port ist 8082 (nicht 8080!) - -Port 8080 ist auf diesem Host bereits belegt, deshalb lauscht der -Inform-Port für die Geräte-Adoption auf **8082**. Damit Geräte sich melden: - -- In der Weboberfläche: *Einstellungen → System → Erweitert → - "Inform Host" überschreiben* aktivieren und `:8082` eintragen, **oder** -- pro Gerät per SSH: `set-inform http://:8082/inform` - ## Ports +Hinweis: Ist Port 8080 auf dem Host schon belegt, das Mapping in der +`docker-compose.yml` z.B. auf `8082:8080` ändern — dann müssen Geräte per +`set-inform http://:8082/inform` (oder über *Einstellungen → System → +Erweitert → "Inform Host" überschreiben*) adoptiert werden. + | Host-Port | Zweck | |-----------|------------------------------------------| | 8443 | Weboberfläche (HTTPS) | -| 8082 | Inform / Geräte-Adoption (→ 8080 intern) | +| 8080 | Inform / Geräte-Adoption | | 3478/udp | STUN | | 10001/udp | Geräte-Discovery | | 8843 | Gäste-Portal HTTPS (optional) | diff --git a/docker-compose.yml b/docker-compose.yml index 35b698d..99a5379 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -36,7 +36,7 @@ services: - ./data/unifi:/config ports: - "8443:8443" # Web-UI (https://:8443) - - "8080:8080" # Inform-Port für Geräte (Host-Port 8082, da 8080/8081 belegt!) + - "8080:8080" # Inform-Port für Geräte-Adoption - "3478:3478/udp" # STUN - "10001:10001/udp" # Geräte-Discovery - "8843:8843" # Gäste-Portal HTTPS (optional)