Start & Stop .bat script to nginx for windowsektorcaba (51)in #steemcodeit • 7 years ago (edited)Simple bat scripts to run nginx in windows. start.bat @ECHO OFF ECHO Starting NGINX start nginx.exe popd EXIT /b stop.bat @ECHO OFF taskkill /f /IM nginx.exe taskkill /f /IM php-cgi.exe EXIT #nginx #script #windows #steemdev