11 lines
356 B
Plaintext
11 lines
356 B
Plaintext
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
# ==============================================================================
|
|
# Home Assistant Add-on: Loki
|
|
# Runs the Nginx daemon
|
|
# ==============================================================================
|
|
bashio::net.wait_for 8080
|
|
bashio::log.info "Starting NGinx..."
|
|
|
|
exec /usr/sbin/nginx
|