Windows nginx重启bat脚本

Published: · LastMod: December 14, 2023 · 49 words

Windows nginx重启bat脚本 🔗

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
@echo off

taskkill /IM nginx.exe /F /T

echo "The process nginx.exe has been terminated."

pause

start /d D:\soft\nginx-1.22.1\nginx-1.22.1 /b nginx.exe

echo "Start nginx success"