mirror of
https://github.com/esphome/home-assistant-addon.git
synced 2024-11-08 09:53:18 +01:00
11 lines
380 B
Plaintext
Executable File
11 lines
380 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
# ==============================================================================
|
|
# Community Hass.io Add-ons: ESPHome
|
|
# Runs the NGINX proxy
|
|
# ==============================================================================
|
|
# shellcheck disable=SC1091
|
|
source /usr/lib/hassio-addons/base.sh
|
|
|
|
hass.log.info "Starting NGINX..."
|
|
exec nginx -g "daemon off;"
|