v0.1 test
This commit is contained in:
15
esphome_proxy/rootfs/etc/s6-overlay/s6-rc.d/init-nginx/run
Executable file
15
esphome_proxy/rootfs/etc/s6-overlay/s6-rc.d/init-nginx/run
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/command/with-contenv bashio
|
||||
# shellcheck shell=bash
|
||||
# ==============================================================================
|
||||
# Configures NGINX for use with this add-on.
|
||||
# ==============================================================================
|
||||
|
||||
# Note the ^ at the beginning of the proxy_pass_host value
|
||||
# This stops bashio:var.json from passing the value as a string
|
||||
bashio::var.json \
|
||||
entry "$(bashio::addon.ingress_entry)" \
|
||||
server "$(bashio::config 'server')" \
|
||||
proxy_pass_host "^$(bashio::config 'proxy_pass_host')" \
|
||||
| tempio \
|
||||
-template /etc/nginx/templates/ingress.gtpl \
|
||||
-out /etc/nginx/servers/ingress.conf
|
||||
@@ -0,0 +1 @@
|
||||
oneshot
|
||||
1
esphome_proxy/rootfs/etc/s6-overlay/s6-rc.d/init-nginx/up
Executable file
1
esphome_proxy/rootfs/etc/s6-overlay/s6-rc.d/init-nginx/up
Executable file
@@ -0,0 +1 @@
|
||||
/etc/s6-overlay/s6-rc.d/init-nginx/run
|
||||
28
esphome_proxy/rootfs/etc/s6-overlay/s6-rc.d/nginx/finish
Executable file
28
esphome_proxy/rootfs/etc/s6-overlay/s6-rc.d/nginx/finish
Executable file
@@ -0,0 +1,28 @@
|
||||
#!/command/with-contenv bashio
|
||||
# shellcheck shell=bash
|
||||
# ==============================================================================
|
||||
# Take down the S6 supervision tree when the NGINX fails
|
||||
# ==============================================================================
|
||||
readonly exit_code_service="${1}"
|
||||
readonly exit_code_signal="${2}"
|
||||
exit_code_container=$(cat /run/s6-linux-init-container-results/exitcode)
|
||||
readonly exit_code_container
|
||||
readonly service="nginx"
|
||||
|
||||
bashio::log.info \
|
||||
"Service ${service} exited with code ${exit_code_service}" \
|
||||
"(by signal ${exit_code_signal})"
|
||||
|
||||
if [[ "${exit_code_service}" -eq 256 ]]; then
|
||||
if [[ "${exit_code_container}" -eq 0 ]]; then
|
||||
echo $((128 + exit_code_signal)) > /run/s6-linux-init-container-results/exitcode
|
||||
fi
|
||||
if [[ "${exit_code_signal}" -eq 15 ]]; then
|
||||
exec /run/s6/basedir/bin/halt
|
||||
fi
|
||||
elif [[ "${exit_code_service}" -ne 0 ]]; then
|
||||
if [[ "${exit_code_container}" -eq 0 ]]; then
|
||||
echo "${exit_code_service}" > /run/s6-linux-init-container-results/exitcode
|
||||
fi
|
||||
exec /run/s6/basedir/bin/halt
|
||||
fi
|
||||
8
esphome_proxy/rootfs/etc/s6-overlay/s6-rc.d/nginx/run
Executable file
8
esphome_proxy/rootfs/etc/s6-overlay/s6-rc.d/nginx/run
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/command/with-contenv bashio
|
||||
# shellcheck shell=bash
|
||||
# ==============================================================================
|
||||
# Runs the NGINX daemon
|
||||
# ==============================================================================
|
||||
|
||||
bashio::log.info "Starting NGINX..."
|
||||
exec nginx
|
||||
1
esphome_proxy/rootfs/etc/s6-overlay/s6-rc.d/nginx/type
Normal file
1
esphome_proxy/rootfs/etc/s6-overlay/s6-rc.d/nginx/type
Normal file
@@ -0,0 +1 @@
|
||||
longrun
|
||||
Reference in New Issue
Block a user