docs: add zeroconf changes
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
1f0fd699ea
commit
2b98792657
|
@ -13,6 +13,8 @@ The format is based on [Keep a Changelog].
|
||||||
- **notifier**: Added support for a configurable `body_format`
|
- **notifier**: Added support for a configurable `body_format`
|
||||||
- **power**: Added support for generic `http` type switches.
|
- **power**: Added support for generic `http` type switches.
|
||||||
- **metadata**: Added support for OrcaSlicer
|
- **metadata**: Added support for OrcaSlicer
|
||||||
|
- **zeroconf**: Added support for a configurable mDNS hostname.
|
||||||
|
- **zeroconf**: Added support for UPnP/SSDP Discovery.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|
|
@ -2096,13 +2096,20 @@ gcode:
|
||||||
```
|
```
|
||||||
|
|
||||||
### `[zeroconf]`
|
### `[zeroconf]`
|
||||||
Enable Zeroconf service registration allowing external services to more
|
Enables support for Zeroconf (Apple Bonjour) discovery, allowing external services
|
||||||
easily detect and use Moonraker instances.
|
detect and use Moonraker instances.
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
# moonraker.conf
|
# moonraker.conf
|
||||||
|
|
||||||
[zeroconf]
|
[zeroconf]
|
||||||
|
mdns_hostname:
|
||||||
|
# The hostname used when registering the multicast DNS serivce.
|
||||||
|
# The instance will be available at:
|
||||||
|
# http://{mdns_hostname}.local:{port}/
|
||||||
|
# The default is the operating system's configured hostname.
|
||||||
|
enable_ssdp:
|
||||||
|
# Enables discovery over UPnP/SSDP in ad. The default is False
|
||||||
```
|
```
|
||||||
|
|
||||||
### `[button]`
|
### `[button]`
|
||||||
|
|
Loading…
Reference in New Issue