Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
DubhAd
39b5a4275a
Added troubleshooting section
Note about how to (usually) resolve issues with certbot permissions
2018-04-04 21:24:16 +01:00

View file

@ -95,3 +95,13 @@ If you want to use Home Assistant to host or serve static files then create a di
<p class='note'> <p class='note'>
If you've had to create the `www/` folder for the first time, you'll need to restart Home Assistant. If you've had to create the `www/` folder for the first time, you'll need to restart Home Assistant.
</p> </p>
## {% linkable_title Troubleshooting %}
### {% linkable_title LetsEncrypt - not a file for dictionary value %}
If you're getting the error message `Invalid config for [http]: not a file for dictionary value @ data['http']['ssl_certificate'].` then it's most likely down to a permissions problem. Some installs of certbot are too locked down, and the following will resolve this:
```bash
$ sudo chmod a+x /etc/letsencrypt/live /etc/letsencrypt/keys /etc/letsencrypt/archive
```