1
0

initial commit

This commit is contained in:
2025-06-05 11:01:19 +03:00
commit 48f13f97a3
297 changed files with 7136 additions and 0 deletions

15
scripts/angie-reload.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
set -ef
pid_file="${1:-/run/ngx/angie.pid}"
[ -f "${pid_file}" ] || {
echo "Angie is not running? (${pid_file} not found)"
exit 0
}
[ -s "${pid_file}" ] || {
echo "Angie is not running? (${pid_file} is empty)"
exit 1
}
pid=$(cat "${pid_file}") || exit 1
exec env kill -SIGHUP "${pid}"