Добавлены новые домены + файл включающий в себя все списки
All checks were successful
Production Build / publish (push) Successful in 18s

This commit is contained in:
2026-04-16 17:13:34 +03:00
parent 666ae5117f
commit 5b78da1edc
19 changed files with 84 additions and 5 deletions

18
scripts/entrypoint.sh Normal file
View File

@ -0,0 +1,18 @@
#!/bin/sh
SCRIPT_DIR="/usr/share/nginx/html/scripts"
for f in "$SCRIPT_DIR"/*.sh; do
if [ "$f" = "$SCRIPT_DIR/entrypoint.sh" ]; then
continue
fi
if [ -x "$f" ]; then
echo "=> Executing $f"
"$f"
else
echo "=> Skipping $f (not executable)"
fi
done
exec nginx "$@"