我目前正在使用 nginx 和 PHP FastCGI ,但这种安排受限于它一次只能提供一个HTTP请求。 (参见here。)我通过Windows命令提示符启动PHP;
c:\Program Files\PHP>php-cgi -b 127.0.0.1:9000
然而,有另一种方法可以将PHP称为“快速CGI进程管理器”(PHP-FPM)。
在nginx后面的Windows 7上运行时,PHP-FPM可以同时处理多个HTTP请求吗?
答案 0 :(得分:7)
我最终得到了这个解决方案:你只需启动几个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
答案 1 :(得分:2)
还有一种更好的选择。
在您的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也很重要。