mirror of
https://github.com/hassio-addons/addon-tailscale.git
synced 2025-05-07 04:41:25 +00:00
11 lines
411 B
Text
11 lines
411 B
Text
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
# Home Assistant Community Add-on: Tailscale
|
|
# Runs the Nginx daemon
|
|
# ==============================================================================
|
|
|
|
# Wait for the Tailscale webinterface to become available
|
|
bashio::net.wait_for 25899 localhost 900
|
|
|
|
bashio::log.info "Starting NGinx..."
|
|
exec nginx
|