mirror of
https://github.com/hassio-addons/addon-vscode.git
synced 2025-05-03 18:51:23 +00:00
17 lines
540 B
Text
17 lines
540 B
Text
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
# Home Assistant Community Add-on: Visual Studio Code
|
|
# Runs the Nginx daemon
|
|
# ==============================================================================
|
|
|
|
# Wait for code-server to become available
|
|
bashio::net.wait_for 8443
|
|
|
|
bashio::log.info "Starting NGinx..."
|
|
|
|
# Disable HA Authentication if front door is open
|
|
if bashio::config.true 'leave_front_door_open'; then
|
|
export DISABLE_HA_AUTHENTICATION=true
|
|
fi
|
|
|
|
exec nginx
|