mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-09 09:21:03 +01:00
12 lines
366 B
Plaintext
Executable File
12 lines
366 B
Plaintext
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
# ==============================================================================
|
|
# Home Assistant Community Add-on: Bitwarden
|
|
# Runs the Nginx daemon
|
|
# ==============================================================================
|
|
bashio::net.wait_for 80
|
|
bashio::log.info "Starting NGinx..."
|
|
|
|
exec nginx
|