Start & Stop .bat script to nginx for windows

in steemcodeit •  6 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
Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!