mirror of
https://github.com/hassio-addons/addon-tasmoadmin.git
synced 2025-05-05 03:21:34 +00:00
9 lines
400 B
Text
Executable file
9 lines
400 B
Text
Executable file
#!/command/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;"
|