Created
May 7, 2015 23:29
-
-
Save jpoehls/6f0a025413d268f81ea1 to your computer and use it in GitHub Desktop.
Caddyfile PHP on Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://caddyserver.com/download | |
http://localhost:8080 { | |
startup php.cmd & | |
fastcgi / 127.0.0.1:9123 php | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
ECHO Starting PHP FastCGI... | |
C:\php\php-cgi.exe -b 127.0.0.1:9123 -c C:\php\php.ini |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment