kshestov
(Konstantin)
1
I have HA under python VM configured in April. It uses https and legasy api password for iphone application. Config tail:
homeassistant:
auth_providers:
- type: legacy_api_password
api_password: !secret http_password
http:
base_url: https://domain:8123
ssl_certificate: /home/.../cer.pem
ssl_key: /home/.../key.key
For the some time after update it starts but not available on 8123:
WARNING (MainThread) [homeassistant.components.http] The 'base_url' option is deprecated, please remove it from your configuration
If I comment ssl under http it starts. May expired certificate be reason?
tom_l
2
The warning tells you exactly what the problem is:
WARNING (MainThread) [homeassistant.components.http] The 'base_url' option is deprecated, please remove it
^^^ _ this
So do what it says and remove it.
http:
# base_url: https://domain:8123
ssl_certificate: /home/.../cer.pem
ssl_key: /home/.../key.key
The new URL options are in the base config under home assistant: https://www.home-assistant.io/docs/configuration/basic/#external_url
2 Likes
kshestov
(Konstantin)
3
Thanks for all. Resolved by reissuing certificate
tom_l
4
You still need to fix your config.
kshestov
(Konstantin)
5
I fixed config too. Thanks