From 940faa5cf124c7ac9714547c27fc8a8eee7a9b17 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 6 Dec 2015 21:41:04 -0800 Subject: [PATCH] Add HTTP component page --- source/_components/http.markdown | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 source/_components/http.markdown diff --git a/source/_components/http.markdown b/source/_components/http.markdown new file mode 100644 index 00000000000..cff1e1b3605 --- /dev/null +++ b/source/_components/http.markdown @@ -0,0 +1,25 @@ +--- +layout: component +title: "HTTP" +description: "Offers a web framework to serve files." +date: 2015-12-06 21:35 +sidebar: true +comments: false +sharing: true +footer: true +ha_category: "Other" +--- + +The HTTP component serves all files and data required for the Home Assistant frontend. You only need to add this to your configuration file if you want to change any of the default settings. + +```yaml +# Example configuration.yaml entry +http: + # Optional, protect Home Assistant with a password + api_password: XXX + # Optional, disable caching and load unvulcanized assets + development: 1 + # Optional, serve Home Assistant over a secure connection + ssl_certificate: /etc/letsencrypt/live/hass.example.com/fullchain.pem + ssl_key: /etc/letsencrypt/live/hass.example.com/privkey.pem +```