Skip to content

Instantly share code, notes, and snippets.

@darakanoit
Created November 12, 2020 18:06
Show Gist options
  • Save darakanoit/83203bf12fb9139f35bcf0ea7a94e81d to your computer and use it in GitHub Desktop.
Save darakanoit/83203bf12fb9139f35bcf0ea7a94e81d 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 PHP FastCGI...
RunHiddenConsole.exe "C:\php\php-cgi.exe" -b 127.0.0.1:9000 -c "C:\php\php.ini"
ECHO Starting NGINX
start nginx.exe
popd
EXIT /b
@ECHO OFF
taskkill /f /IM nginx.exe
taskkill /f /IM php-cgi.exe
EXIT /b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment