mirror of
https://github.com/hassio-addons/addon-tasmoadmin.git
synced 2025-05-04 11:01:27 +00:00
12 lines
440 B
Text
Executable file
12 lines
440 B
Text
Executable file
#!/usr/bin/with-contenv bash
|
|
# ==============================================================================
|
|
# Community Hass.io Add-ons: TasmoAdmin
|
|
# Runs the Nginx daemon
|
|
# ==============================================================================
|
|
# shellcheck disable=SC1091
|
|
source /usr/lib/hassio-addons/base.sh
|
|
|
|
# Wait for PHP-FPM to become available
|
|
s6-svwait -u -t 5000 /var/run/s6/services/php-fpm
|
|
|
|
exec nginx -g "daemon off;"
|