Remove http:// from example Kodi config (#1670)

This commit is contained in:
Adam Mills 2017-01-04 02:22:58 -05:00 committed by Fabian Affolter
parent 7a6bb7b355
commit 999558435d

View File

@ -23,13 +23,13 @@ To add Kodi to your installation, add the following to your `configuration.yaml`
# Example configuration.yaml entry # Example configuration.yaml entry
media_player: media_player:
- platform: kodi - platform: kodi
host: http://192.168.0.123 host: 192.168.0.123
``` ```
Configuration variables: Configuration variables:
- **host** (*Required*): The host name or address of the device that is running XBMC/Kodi - **host** (*Required*): The host name or address of the device that is running XBMC/Kodi
- **port** (*Optional*): The port number. Defaults to 8080. - **port** (*Optional*): The http port number. Defaults to 8080.
- **name** (*Optional*): The name of the device used in the frontend. - **name** (*Optional*): The name of the device used in the frontend.
- **username** (*Optional*): The XBMC/Kodi HTTP username. - **username** (*Optional*): The XBMC/Kodi HTTP username.
- **password** (*Optional*): The XBMC/Kodi HTTP password. - **password** (*Optional*): The XBMC/Kodi HTTP password.