Installation guides are found here
Multiple platforms are supported, although most common ones are:
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer interdum venenatis diam, sit amet vehicula tellus suscipit dignissim. Phasellus a sem a lorem venenatis rutrum
Home Assistant has a native backup solution that can be found by navigating to 'Settings' > 'System' > 'Backups'
These backup archives are kept locally, we have to sync them externally.
Some add-on solutions that can be used are:
A few lines will be needed in configuration.yaml for Reverse Proxy access to work:
http:
use_x_forwarded_for: true
trusted_proxies:
- {Reverse_Proxy_Host_IP}
HAOS installations on MicroSD cards usually fail within 6-12 months due to the amount of IOPS (especially database logging). There are several options to address this, such as trimming logged activity, logging to memory or scheduled writes.
recorder:
commit_interval: 60
purge_keep_days: 3
exclude:
domains:
- switch
- lights
- plug
- weather
This example adds a 60s delay to database commits and only keeps 3 days of logs. Specific domains (switch, lights, plug, weather) can also be blacklisted to further reduce IOPS.
This option will delete all logs after system reboots
recorder:
db_url: 'sqlite:///:memory:' #add or modify this line
This option may cause data loss between scheduled writes due to power loss or unexpected shutdowns
recorder:
db_url: mysql://homeassistant:<PASSWORD>@<add-on_hostname>/homeassistant?charset=utf8mb4
Local Tuya allows local control that utilises pushing updates instead of polling, resulting in near-instant data handling.