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