Add description to solve self-signed access certificate error (#9457)

* error about self-signed access certificate 

Same for self-signed certificate:
https://community.home-assistant.io/t/homeassistan-doesnt-read-letsencrypt-certificate/3308

* Minor changes
This commit is contained in:
Tungsteno74 2019-05-16 09:05:52 +02:00 committed by Fabian Affolter
parent 0c607dab9a
commit b3da86795f

View File

@ -44,4 +44,11 @@ http:
A restart of Home Assistant is required for the changes to take effect.
If you get any log error about *ssl_key* or *ssl_certificate* that is **not a file for dictionary value** when run Home Assistant, you need to change owner or access permission of the `.pem` files as following:
```bash
$ sudo chown homeassistant:homeassistant certificate.pem privkey.pem
$ sudo chmod 755 certificate.pem privkey.pem
```
A tutorial "[Working with SSL Certificates, Private Keys and CSRs](https://www.digitalocean.com/community/tutorials/openssl-essentials-working-with-ssl-certificates-private-keys-and-csrs)" could give you some insight about special cases.