mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-10 09:51:02 +01:00
14 lines
426 B
Plaintext
Executable File
14 lines
426 B
Plaintext
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
# ==============================================================================
|
|
# Home Assistant Community Add-on: spotweb
|
|
# Runs the Nginx daemon
|
|
# ==============================================================================
|
|
|
|
# Wait for PHP-FPM to become available
|
|
bashio::net.wait_for 9000
|
|
|
|
bashio::log.info "Starting NGinx..."
|
|
|
|
nginx -c /etc/nginx/nginx.conf |