| 123456 |
- #!/bin/bash
- # 服务器静态服务守护启动器:没在跑就拉起(cron 每分钟调 + @reboot)。
- # 托管 ~/hs-data(deploy 分支 clone)的静态产物,端口 6666,用户空间、不动系统。
- pgrep -f "serve-hs.py" >/dev/null 2>&1 || \
- setsid python3 -u "$HOME/serve-hs.py" "$HOME/hs-data" 6666 \
- >"$HOME/hs-web.log" 2>&1 </dev/null &
|