home-assistant.io/source/_components/zoneminder.markdown
Paulus Schoutsen 8da0dfa74f Revert "Added documentation changes for ZM external trigger (#2350)" (#2359)
This reverts commit 8c8b44b64439cb0bc57508f41b8b97ec267ec552.
2017-03-31 08:56:44 -07:00

44 lines
1.4 KiB
Markdown

---
layout: page
title: "ZoneMinder"
description: "How to integrate ZoneMinder into Home Assistant."
date: 2016-10-13 22:57
sidebar: true
comments: false
sharing: true
footer: true
logo: zoneminder.png
ha_category: Hub
featured: false
ha_release: 0.31
---
The ZoneMinder component sets up the integration with your [ZoneMinder](https://www.zoneminder.com) instance so that [cameras](/components/camera.zoneminder/), [sensors](/components/sensor.zoneminder/), and [switches](/components/switch.zoneminder) can use it.
```yaml
# Example configuration.yaml entry
zoneminder:
host: ZM_HOST
```
Configuration variables:
- **host** (*Required*): Your ZoneMinder server's host (and optional port), not including the scheme.
- **path** (*Optional*): Path to your ZoneMinder install. Defaults to `/zm/`.
- **path_zms** (*Optional*): Path to the CGI script for streaming. This should match `PATH_ZMS` in ZM's "Paths" settings. Defaults to `/zm/cgi-bin/nph-zms`.
- **ssl** (*Optional*): Set to `True` if your ZoneMinder installation is using SSL. Default to `False`.
- **username** (*Optional*): Your ZoneMinder username.
- **password** (*Optional*): Your ZoneMinder password. Required if `OPT_USE_AUTH` is enabled in ZM.
### {% linkable_title Full configuration %}
```yaml
# Example configuration.yaml entry
zoneminder:
host: ZM_HOST
path: ZM_PATH
path_zms: ZM_PATH_ZMS
ssl: False
username: USERNAME
password: PASSWORD
```