mirror of
				https://github.com/esphome/esphome.git
				synced 2025-11-04 00:51:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			451 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			451 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
#!/command/with-contenv bashio
 | 
						|
# shellcheck shell=bash
 | 
						|
# ==============================================================================
 | 
						|
# Community Hass.io Add-ons: ESPHome
 | 
						|
# Runs the NGINX proxy
 | 
						|
# ==============================================================================
 | 
						|
 | 
						|
bashio::log.info "Waiting for ESPHome dashboard to come up..."
 | 
						|
 | 
						|
while [[ ! -S /var/run/esphome.sock ]]; do
 | 
						|
  sleep 0.5
 | 
						|
done
 | 
						|
 | 
						|
bashio::log.info "Starting NGINX..."
 | 
						|
exec nginx
 |