2023-01-18 18:22:35 +01:00
|
|
|
#!/command/with-contenv bashio
|
|
|
|
# shellcheck shell=bash
|
2019-02-13 16:54:02 +01:00
|
|
|
# ==============================================================================
|
|
|
|
# Community Hass.io Add-ons: ESPHome
|
|
|
|
# Runs the NGINX proxy
|
|
|
|
# ==============================================================================
|
|
|
|
|
2023-01-18 18:22:35 +01:00
|
|
|
bashio::log.info "Waiting for ESPHome dashboard to come up..."
|
2019-04-24 17:08:05 +02:00
|
|
|
|
|
|
|
while [[ ! -S /var/run/esphome.sock ]]; do
|
|
|
|
sleep 0.5
|
|
|
|
done
|
|
|
|
|
2019-03-17 20:41:07 +01:00
|
|
|
bashio::log.info "Starting NGINX..."
|
2019-04-24 17:08:05 +02:00
|
|
|
exec nginx
|