Hi All,
I have spend almost 3 days on certificates. Finally I managed to get the Pem files which I have under my HA directory. HA is installed on Docker. I get below error and HA doesn’t start after configuring SSL.
2018-03-16 16:58:46 ERROR (MainThread) [homeassistant.components.http] Could not read SSL certificate from /config/SSL/fullchain.pem: [SSL] PEM lib (_ssl.c:3358)
http:
# Secrets are defined in the file secrets.yaml
api_password: !secret http_password
ssl_certificate: /config/SSL/fullchain.pem
# ssl_key: /config/SSL/private.pem
server_port: 8123
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
base_url: https://mydomain:8123
ip_ban_enabled: true
login_attempts_threshold: 3
trusted_networks:
- 127.0.0.1
- ::1
- 192.168.15.0/24
Below is my instance to HA in Docker.
rahul@RahulThakkar-PC:~$ sudo docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
38948aa1f634 homeassistant/home-assistant "python -m homeass..." 13 days ago Up About a minute ha_web_1
I also tried chmod and changing pem file permission to 755 but still same error.
Please help !!!
Thanks in advance.
RT