浏览模式: 普通 | 列表
12月, 2019 | 1
本文主要针对如何通过配置php7.1的php-fpm多实例,及nginx对多实例负载均衡之配置,不涉及安装。

1、负载均衡服务器(server)查看nginx配置文件 。
attachments/201912/24_123933_1.png


可以看到此处user使用的是nginx

2、应用服务器(web)查看 php-fpm配置文件
attachments/201912/24_123948_2.png

发现这里php-fpm中的user是apache

修改user=nginx 由于应用服务器没有nginx用户所以启动失败。

3、web服务器添加用户nginx;

#useradd nginx;

4、web服务器php-fpm配置文件 www.conf修改详情如下 :

      一、修改user=apache 为nginx
...

阅读全文…

ueditor加入flash视频标签支持

[ 2019-12-24 10:47:24 | 作者: admin ]
编辑ueditor.config.js
    // xss过滤白名单 名单来源: https://raw.githubusercontent.com/leizongmin/js-xss/master/lib/default.js
    ,whitList: {
      video: ['autoplay', 'controls', 'loop', 'preload', 'src', 'height', 'width', 'class', 'style'],
      object: ['type', 'id','height', 'width', 'class', 'style'],
      param: ['name', 'value']
    }
1