Certificate Authority and self-signed certificate for SSL/TLS – Home Assistant

Update the http: entry in your configuration.yaml file and let it point to your created files.

Home Assistant & Home Assistant Supervised:

http:
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem

Home Assistant Core:

http:
ssl_certificate: /home/your_user/.homeassistant/fullchain.pem
ssl_key: /home/your_user/.homeassistant/privkey.pem

Home Assistant Core on Docker:

http:
ssl_certificate: /config/fullchain.pem
ssl_key: /config/privkey.pem

 

Source: Certificate Authority and self-signed certificate for SSL/TLS – Community Guides – Home Assistant Community

Certificate Authority and self-signed certificate for SSL/TLS – Home Assistant was last modified: May 31st, 2021 by Jovan Stosic

ESP8266 and mosquitto: Wificlientsecure apparently connects but after it aborts · Issue #4541 · esp8266/Arduino · GitHub

1) Generate a CA certificate and key
sudo openssl req -new -x509 -days 3650 -extensions v3_ca -keyout mqtt_ca.key -out mqtt_ca.crt

2) Generate a server key
sudo openssl genrsa -out mqtt_server.key 2048

3) Generate a certificate signing request to send to the CA
sudo openssl req -out mqtt_server.csr -key mqtt_server.key -new

4) Send the CSR to the CA, or sign it with your CA key
sudo openssl x509 -req -in mqtt_server.csr -CA mqtt_ca.crt -CAkey mqtt_ca.key -CAcreateserial -out mqtt_server.crt -days 3650

Source: ESP8266 and mosquitto: Wificlientsecure apparently connects but after it aborts · Issue #4541 · esp8266/Arduino · GitHub

ESP8266 and mosquitto: Wificlientsecure apparently connects but after it aborts · Issue #4541 · esp8266/Arduino · GitHub was last modified: May 30th, 2021 by Jovan Stosic

Georges Méliès

Marie-Georges-Jean Méliès (/mˈljɛs/; French: [meljɛs]; 8 December 1861 – 21 January 1938), was a French illusionist, actor, and film director who led many technical and narrative developments in the earliest days of cinema.

Méliès was well known for the use of special effects, popularizing such techniques as substitution splices, multiple exposures, time-lapse photography, dissolves, and hand-painted colour. He was also one of the first filmmakers to use storyboards.[2] His films include A Trip to the Moon (1902) and The Impossible Voyage (1904), both involving strange, surreal journeys somewhat in the style of Jules Verne, and are considered among the most important early science fiction films, though their approach is closer to fantasy.

https://en.wikipedia.org/wiki/Georges_M%C3%A9li%C3%A8s

Georges Méliès was last modified: May 24th, 2021 by Jovan Stosic