From 8e7887bfed43cd3a64832ed5ec7073f6df48ff55 Mon Sep 17 00:00:00 2001 From: Flip Hess Date: Mon, 10 Sep 2018 12:36:26 +0200 Subject: [PATCH] Add verify_ssl option to generic camera docs (#6005) * Add verify_ssl option to generic camera docs * :pencil2: Typo --- source/_components/camera.generic.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/_components/camera.generic.markdown b/source/_components/camera.generic.markdown index b9bf15bf46a..e8c457086f5 100644 --- a/source/_components/camera.generic.markdown +++ b/source/_components/camera.generic.markdown @@ -37,6 +37,7 @@ Configuration variables: - **limit_refetch_to_url_change** (*Optional*): True/false value (default: false). Limits re-fetching of the remote image to when the URL changes. Only relevant if using a template to fetch the remote image. - **content_type** (*Optional*): Set the content type for the IP camera if it is not a jpg file (default: `image/jpeg`). Use `image/svg+xml` to add a dynamic svg file. - **framerate** (*Optional*): The number of frames-per-second (FPS) of the stream (setting this too high may cause too much traffic on the network or be heavy on the camera). +- **verify_ssl** (*Optional*): True/false value (default: true). Enable or disable SSL certificate verification.

@@ -68,6 +69,7 @@ camera: - platform: generic name: Some Image still_image_url: https://127.0.0.1:8123/local/your_image.png + verify_ssl: false ``` ### {% linkable_title Sharing a camera feed from one Home Assistant instance to another %}