hexabot/docker/nginx/99-autoreload.sh
2024-09-13 11:07:41 +01:00

7 lines
160 B
Bash

#!/bin/sh
while :; do
# Optional: Instead of sleep, detect config changes and only reload if necessary.
sleep 6h
nginx -t && nginx -s reload
done &