mirror of
https://github.com/hassio-addons/addon-tasmoadmin.git
synced 2025-05-04 19:11:26 +00:00
9 lines
400 B
Text
Executable file
9 lines
400 B
Text
Executable file
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
# Home Assistant Community Add-on: TasmoAdmin
|
|
# Runs the Nginx daemon
|
|
# ==============================================================================
|
|
# Wait for PHP-FPM to become available
|
|
bashio::net.wait_for 9001
|
|
bashio::log.info "Starting NGinx server..."
|
|
exec nginx -g "daemon off;"
|