__nginx_vhost: make configuration reload more robust
This commit is contained in:
parent
8db890deb4
commit
502cb54ce2
1 changed files with 30 additions and 21 deletions
|
@ -1,21 +1,29 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
os="$(cat "${__global:?}"/explorer/os)"
|
os="$(cat "${__global:?}"/explorer/os)"
|
||||||
|
init=$(cat "$__global/explorer/init")
|
||||||
|
nginx_confdir="/etc/nginx"
|
||||||
|
|
||||||
case "$os" in
|
# The nginx service is not automatically started on alpine.
|
||||||
alpine)
|
if [ "$os" = "alpine" ]; then
|
||||||
reload_hook="service nginx --ifstopped start;\
|
echo "service nginx --ifstopped start"
|
||||||
service nginx --ifstarted reload"
|
fi
|
||||||
;;
|
|
||||||
debian|ubuntu|*)
|
if grep -qE "^__file$nginx_confdir" "${__messages_in:?}"; then
|
||||||
|
case "$init" in
|
||||||
|
systemd)
|
||||||
reload_hook="systemctl reload-or-restart nginx"
|
reload_hook="systemctl reload-or-restart nginx"
|
||||||
;;
|
;;
|
||||||
|
busybox-init+openrc)
|
||||||
|
reload_hook="service nginx reload"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Unknown init $init." >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Check configuration and reload if valid.
|
cat <<- EOF
|
||||||
# TODO: only check if configuration was changed (= listen for __file's
|
|
||||||
# messages).
|
|
||||||
cat << EOF
|
|
||||||
if nginx -t; then
|
if nginx -t; then
|
||||||
$reload_hook
|
$reload_hook
|
||||||
else
|
else
|
||||||
|
@ -24,3 +32,4 @@ else
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
EOF
|
EOF
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue