设为首页收藏本站

ZMX - IT技术交流论坛 - 无限Perfect,追求梦想 - itzmx.com

 找回密码
 注册论坛

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

用百度帐号登录

只需两步,快速登录

搜索
查看: 1230|回复: 1

nginx用户转到kangle使用,如何处理PHP-FPM的管理进程的疑问

[复制链接]
 成长值: 252

签到天数: 4709 天

[LV.Master]伴坛终老

发表于 2021/7/13 05:27 | 显示全部楼层 |阅读模式 |Google Chrome 91.0.4472.124|Windows 10
天涯海角搜一下: 百度 谷歌 360 搜狗 有道 雅虎 必应 即刻
nginx用户转到kangle要注意的一些对应概念。

一般我们在nginx里面使用php是使用fastcgi接口和php通信。其中php进程是由第三方管理如spawn-fcgi与PHP-FPM进行管理。nginx本身不处理php的进程。这部分kangle也是可以一样,不作处理。
nginx核心配置
  1. server
  2. {
  3.    listen       80;
  4.    server_name  www.itzmx.com;
  5.    index index.html index.htm index.php;
  6.    root  /data0/htdocs/blog;
  7.    location ~ .*\.php$
  8.    {      
  9.      fastcgi_pass  127.0.0.1:9000;
  10.      fastcgi_index index.php;
  11.      include fcgi.conf;
  12.    }
  13. }
复制代码

kangle的对应配置
扩展阅读单节点服务器扩展(server)
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <config>
  3. <server name='php' proto='fastcgi' host='127.0.0.1' port='9000' life_time='0' />
  4. <vh name='www.itzmx.com' doc_root='/data0/htdocs/blog' inherit='off'>
  5.    <index file='index.html'/>
  6.    <index file='index.htm'/>
  7.    <index file='index.php'/>
  8.    <map file_ext='php' extend='server:php' allow_method='*'/>
  9.    <bind>!*:80</bind>
  10.    <host>www.itzmx.com</host>
  11. </vh>
  12. </config>
复制代码

一个<vh>下面可以包含多个<bind>和<host>。实现绑定多个端口和多个域名。<host>域名也支持泛域名*.itzmx.com
把这个文件存到kangle/ext目录下,文件名不限制,使用

kangle -r
重新加载即可。
欢迎光临IT技术交流论坛:http://bbs.itzmx.com/
回复

使用道具 举报

签到天数: 1164 天

[LV.10]以坛为家III

发表于 2021/7/19 08:11 | 显示全部楼层 |Google Chrome 91.0.4472.124|Windows 10
欢迎光临IT技术交流论坛:http://bbs.itzmx.com/
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册论坛 新浪微博账号登陆用百度帐号登录

本版积分规则

手机版|Archiver|Mail me|网站地图|IT技术交流论坛 ( 闽ICP备13013206号-7 )

GMT+8, 2024/11/25 01:30 , Processed in 0.254500 second(s), 21 queries , MemCache On.

Powered by itzmx! X3.4

© 2011- sakura

快速回复 返回顶部 返回列表