php 与 nginx 的处理方式及nginx与php-fpm通信的两种方式
先给大家介绍下php与nginx的两种处理方式,具体内容如下所示:
1.IP:Port监听方式
php-fpm dockerpullPHP:2.4-alpine nginx.conf fastcgi_pass127.0.0.1:9000;
php-fpm在容器里的nginx.conf
location/php { proxy_set_headerHost$host:$server_port; proxy_passhttp://138.38.38.111:80/; }
2.UDS方式监听
php-fpm listen=/tmp/php-fpm.sock nginx.conf fastcgi_passunix:/tmp/php-fpm.sock;
3.注意
php-fpm用ip:port方式建立链接,
nginx不要用unixsocket方式建立链接,用ip:port方式建立连接就行
下面看下nginx与php-fpm通信的两种方式
在linux中,nginx服务器和php-fpm可以通过tcpsocket和unixsocket两种方式实现。
unixsocket是一种终端,可以使同一台操作系统上的两个或多个进程进行数据通信。这种方式需要再nginx配置文件中填写php-fpm的pid文件位置,效率要比tcpsocket高。
tcpsocket的优点是可以跨服务器,当nginx和php-fpm不在同一台机器上时,只能使用这种方式。
windows系统只能使用tcpsocket的通信方式
配置方法
tcpsocket
tcpsocket通信方式,需要在nginx配置文件中填写php-fpm运行的ip地址和端口号。
location~\.php${ includefastcgi_params; fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;; fastcgi_pass127.0.0.1:9000; fastcgi_indexindex.php; }
unixsocket
unixsocket通信方式,需要在nginx配置文件中填写php-fpm运行的pid文件地址。
location~\.php${ includefastcgi_params; fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;; fastcgi_passunix:/var/run/php5-fpm.sock; fastcgi_indexindex.php; }
php-fpm的运行端口号和socket文件的地址都是在php-fpm.conf中配置的。
php-fpm.conf文件在php安装文件的/etc目录下,
比如你的php安装在/opt/php目录,则应该是/opt/php/php-fpm.conf。
;TheaddressonwhichtoacceptFastCGIrequests. ;Validsyntaxesare: ;'ip.add.re.ss:port'-tolistenonaTCPsockettoaspecificIPv4addresson ;aspecificport; ;'[ip:6:addr:ess]:port'-tolistenonaTCPsockettoaspecificIPv6addresson ;aspecificport; ;'port'-tolistenonaTCPsockettoallIPv4addressesona ;specificport; ;'[::]:port'-tolistenonaTCPsockettoalladdresses ;(IPv6andIPv4-mapped)onaspecificport; ;'/path/to/unix/socket'-tolistenonaunixsocket. ;Note:Thisvalueismandatory. listen=127.0.0.1:9000 listen=/var/run/php-fpm.sock
通过注释可以看到,php-fpm的listen指令可以通过五种方式处理FastCGI请求,分别是:
1.ipv4:端口号
2.ipv6:端口号
3.port相当于0.0.0.0:port,本机所有ipv4对应的端口号
4.[::]:port,包括ipv4和ipv6
5.unixsocket文件
直接配置使用unixsocket文件之后,会遇到accessdeny的问题,由于socket文件本质上还是一个文件,存在权限控制问题,默认由root用户创建,因此nginx进程无权限访问,应该配置如下命令:
;Setpermissionsforunixsocket,ifoneisused.InLinux,read/write ;permissionsmustbesetinordertoallowconnectionsfromawebserver.Many ;BSD-derivedsystemsallowconnectionsregardlessofpermissions. ;DefaultValues:userandgrouparesetastherunninguser ;modeissetto0660 listen.owner=www listen.group=www listen.mode=0660
可以配置nginx和php-fpm都是用www用户,这样就不会存在权限问题,当然也可以创建不同的用户,然后加入同一个组,便于分配权限。
总结
以上所述是小编给大家介绍的php与nginx的两种处理方式及nginx与php-fpm通信的两种方式,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!