Skip to content

Instantly share code, notes, and snippets.

@Shmee
Created June 5, 2017 06:01
Show Gist options
  • Save Shmee/bd04ef44767d0666db169a49477939f1 to your computer and use it in GitHub Desktop.
Save Shmee/bd04ef44767d0666db169a49477939f1 to your computer and use it in GitHub Desktop.
Quick startup for NGINX and PHP on Windows
@ECHO OFF
call nginx-stop.bat
call nginx-start.bat
EXIT /b
@ECHO OFF
pushd C:\nginx
ECHO Starting NGINX
start nginx.exe
popd
EXIT /b
@ECHO OFF
taskkill /f /IM nginx.exe
EXIT /b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment