#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev ...
分类:
其他好文 时间:
2021-06-02 14:41:17
阅读次数:
0
特此记录下之前的问题,客户要给门户加集群!节点加上后 1 有点击页面返回登陆页问题: 原因应该是登陆是a节点,再点击下跳到了b节点 所以添加了 改为通过cookie获取token 有的系统也叫sessionid hash $cookie_token。 下面这些好像是获取用户真实ip的 proxy_s ...
分类:
其他好文 时间:
2021-06-02 10:57:40
阅读次数:
0
修改php-fpm.conf security.limit_extensions = .php .html 查看php-fpm.conf内listen,如果是端口则nginx.conf server内容为 location ~ \.php|\.html(.*)$ { fastcgi_pass 127 ...
分类:
Web程序 时间:
2021-05-24 09:26:26
阅读次数:
0
问题描述: 因为403可能会暴露网站目录结构,现在需要将403状态转成404状态 解决办法: nginx 配置增加以下配置: error_page 403 =404 /404.html; 注:主要看这个"=404"的操作,表示:用户访问产生403时,给用户返回404,内容是404.html。 完。 ...
分类:
其他好文 时间:
2021-05-24 04:26:59
阅读次数:
0
REDIS6.x: [Unit] Description=Redis Database After=network.target After=network-online.target Wants=network-online.target [Service] Type=notify PIDFile ...
分类:
其他好文 时间:
2021-05-03 12:28:31
阅读次数:
0
一、打开nginx机器的nginx配置文件 命令: locate nginx.conf 会列出所有nginx.conf文件的地址, 一般咱们要用的nginx配置文件是/usr/local/nginx/conf/nginx.conf cd /usr/local/nginx/conf vim nginx ...
分类:
其他好文 时间:
2021-05-03 12:11:25
阅读次数:
0
1. nginx.cof配置文件说明 # 运行用户 user nobody; # 启动进程,通常设置成和cpu的数量相等 worker_processes 1; # 全局错误日志及PID文件 #error_log logs/error.log; #error_log logs/error.log n ...
分类:
其他好文 时间:
2021-04-21 12:37:55
阅读次数:
0
通过nginx -t获得 nginx=`nginx -t 2>&1 | grep configuration` if [ ! -z "$nginx" ];then nginxtmp="${nginx#*file}" nginxf="${nginxtmp%test*}" echo $nginxf fi ...
分类:
系统相关 时间:
2021-04-19 15:38:16
阅读次数:
0
####nginx程序配置文件说明 1)配置文件的结构 nginx配置文件结构: 1)核心配置部分 main 区域 2)事件配置部分 event 区域 3)网站配置部分 http 区域 指定网站功能参数 4)主机配置区域 server 区域 指定每个网站信息(域名 站点目录 首页文件) 5)loca ...
分类:
其他好文 时间:
2021-04-09 12:49:33
阅读次数:
0
作者:weixin_34092455 https://blog.csdn.net/weixin_34092455/article/details/89733396 本文基于 ansible 2.3.0.0 编写 我们目前有 8 个大区共 24 台 nginx 服务器,每个区除了 upstream 地 ...
分类:
其他好文 时间:
2021-04-08 13:18:16
阅读次数:
0