我目前正在使用nginx和PHP FastCGI,但这种安排受到限制,即一次只能服务一个 HTTP 请求。(见这里。)我从 Windows 命令提示符启动 PHP:
c:\Program Files\PHP>php-cgi -b 127.0.0.1:9000
然而,还有另一种运行 PHP 的方法,称为“Fast CGI Process Manager”(PHP-FPM)。
在 nginx 后面的 Windows 7 上运行时,PHP-FPM 可以同时处理多个 HTTP 请求吗?
我最终得到了这个解决方案:您只需启动几个 php-cgi 进程并将它们绑定到不同的端口,并且您需要更新 nginx 配置:
http {
upstream php_farm {
server 127.0.0.1:9000 weight=1;
server 127.0.0.1:9001 weight=1;
server 127.0.0.1:9002 weight=1;
server 127.0.0.1:9003 weight=1;
}
...
server {
...
fastcgi_pass php_farm;
}
}
为了方便起见,我创建了简单的批处理文件。
start_sandbox.bat
:
@ECHO OFF
ECHO Starting sandbox...
RunHiddenConsole.exe php\php-cgi.exe -b 127.0.0.1:9000 -c php\php.ini
RunHiddenConsole.exe php\php-cgi.exe -b 127.0.0.1:9001 -c php\php.ini
RunHiddenConsole.exe php\php-cgi.exe -b 127.0.0.1:9002 -c php\php.ini
RunHiddenConsole.exe php\php-cgi.exe -b 127.0.0.1:9003 -c php\php.ini
RunHiddenConsole.exe mysql\bin\mysqld --defaults-file=mysql\bin\my.ini --standalone --console
cd nginx && START /B nginx.exe && cd ..
和stop_sandbox.bat
:
pstools\pskill php-cgi
pstools\pskill mysqld
pstools\pskill nginx
如您所见,有 2 个依赖项:pstools和runhiddenconsole.exe
还有一种替代方法,以更好的方式。
在 nginx 配置中使用简单的 Fast-CGI 设置
nginx.conf
server {
....
location ~ \.php$ {
try_files $uri =404;
include fastcgi.conf;
fastcgi_pass 127.0.0.1:9001;
fastcgi_read_timeout 60;
allow 127.0.0.1;
allow ::1;
deny all;
}
}
然后在你的 start.bat 文件中
set PATH=%cd%\bin\php;%PATH%
set PHP_FCGI_MAX_REQUESTS=0
set PHP_FCGI_CHILDREN=10
RunHiddenConsole.exe %cd%/php/php-cgi.exe -b 127.0.0.1:9001 -c %cd%/php/php.ini
PHP_FCGI_CHILDREN 变量是魔法发生的地方。PHP_FCGI_MAX_REQUESTS 也很重要。