HASS OS 6.0 VDI => After Upgrade fails every boot: Failed to start grow file system on /mnt/data – Home Assistant OS

Press <enter> when the system stops during boot systemctl stop systemd-journald umount -A /dev/disk/by-label/hassos-data fsck.ext4 /dev/disk/by-label/hassos-data Keep pressing <enter> through all the prompts

 

Source: HASS OS 6.0 VDI => After Upgrade fails every boot: Failed to start grow file system on /mnt/data – Home Assistant OS – Home Assistant Community

Apache as reverse proxy for multiple destinations and one default destination

ProxyPreserveHost On

RewriteEngine On

RewriteRule ^/appX/(.*) http://127.0.0.1:8001/appX/$1 [P,L]

ProxyPassReverse /appX/ http://127.0.0.1:8001/appX

RewriteRule ^/appY/(.*) http://127.0.0.1:8002/appY/$1 [P,L]

ProxyPassReverse /appY/ http://127.0.0.1:8002/appY

Source: Apache as reverse proxy for multiple destinations and one default destination – Super User