13 lines
426 B
Plaintext
Executable File
13 lines
426 B
Plaintext
Executable File
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
# Add-on: 3dprinter-octoprint
|
|
# Runs the reverse proxy.
|
|
# ==============================================================================
|
|
|
|
# Wait for OctoPrint WebUI to be available
|
|
bashio::net.wait_for 80
|
|
|
|
bashio::log.info "Starting proxy..."
|
|
|
|
exec caddy run --config /etc/caddy/Caddyfile --envfile /etc/caddy/env
|