redis白名单 引发nginx Post请求499错误的一次案例
摘要:前两天给网站增加新服务器,redis,服务器,mysql等都使用的阿里云的服务器。加上后,放开负载均衡,nginx日志却出现大量499状态错误:新服 2022-06-01 09:59:37 · 阅读全文
openresty编译安装
摘要:这里以openresty-1 19 9 1为例。yum -y install epel-release perl pcre-devel openssl-devel gcc curl unzip wget zipuseradd 2022-01-13 21:44:34 · 阅读全文
tengine/nginx 安装geoip2模块
摘要:geoip是一个可以屏蔽ip的模块,nginx默认没有编译,需要自行编译安装。一:安装geoip2扩展依赖yum install libmaxminddb-devel -y 这 2021-12-15 17:32:00 · 阅读全文
Nginx 启动报错 Nginx is a high-performance web and proxy server.
摘要:nginxservice nginx start报错:nginx service - SYSV: Nginx is a high-performance web and proxy server systemctl status 2020-09-02 11:40:16 · 阅读全文
nginx 转发ws为wss
摘要:以下是nginx配置实例,以后端9501为例:server{listen 443 ssl ;server_name send 123 com;index index html index php; root www 2020-09-01 14:33:49 · 阅读全文
nginx cpu核心数优化
摘要:4核配置:worker_processes 4;worker_cpu_affinity 0001 0010 0100 10008核配置:worker_processes 8;worker_cpu_affinity 00000001 2020-08-29 18:53:48 · 阅读全文
nginx跨域解决方案
摘要:实例如下,请根据情况调整:server { listen 80 ; server_name api xxx com; index index html index php; root www admin publi 2020-08-04 09:34:12 · 阅读全文
nginx 重启报错 [error] invalid PID number /usr/.../nginx.pid
摘要:大致如下,无论重启或停止都会报错:[root@123 ~] service nginx restartStoping nginx nginx: [error] invalid PID number 2020-03-12 10:14:14 · 阅读全文
网站 FastCGI sent in stderr: "Unable to open primary script 排查案例
摘要:网站 FastCGI sent in stderr: "Unable to open primary script ,浏览器访问php页面404无法访问。原因:php-fpm权限原因(这里 2019-01-18 15:31:17 · 阅读全文
nginx通过GeoIP模块限制国家地区用户访问
摘要:本文介绍如何使用GeoIP模块让nginx实现限制某个地区用户访问的功能。nginx要加上 --with-http_geoip_module 参数进行编译。1、首先我们检 2018-09-28 08:52:50 · 阅读全文
nginx特殊字符的rewrite
摘要:原地址:borrowinfo page?borrow_id=2017121500000000000000005173目标地址: invest info?borrowId=2017121500000000000000005173if ($re 2018-02-02 18:00:20 · 阅读全文
nodejs+socket.io用nginx反向代理提示400 Bad Request及ws://…无法连接
摘要:nginx 1 3 12以后的版本才支持websocket,所以请先更新nginx。我现在用的是1 6 0版本。server { listen 80; server_n 2017-07-13 10:43:10 · 阅读全文
Windows下启动,关闭Nginx命令
摘要:启动:进入nginx目录,直接点击Nginx目录下的nginx exe 或者 cmd运行:start nginx关闭nginx -s stop或者nginx -s quitstop表示立即 2017-06-27 16:46:45 · 阅读全文
nginx proxy_pass后的url加不加/的区别
摘要: 在nginx中配置proxy_pass时,当在后面的url加上了 ,相当于是绝对根路径,则nginx不会把location中匹配的路径部分代理走;如果没 2017-03-30 10:07:25 · 阅读全文
nginx禁止访问某个后缀名的文件
摘要: 有时候我们为了安全想禁止用户访问某一特定后缀的文件,下面我们说下nginx下的拦截方法,设置后前台访问会直接返回403代码。样例代 2017-03-01 08:48:24 · 阅读全文
nginx设置自定义变量打印到日志
摘要:说明:文件为nginx配置文件nginx conf 设置后全局生效,请提前在程序中定义好相关变量名,nginx开启access log写日志功能(默认开启)。1 2017-01-12 15:05:49 · 阅读全文
Nginx更改TLS版本
摘要:最近搞微信小程序,碰到一个问题:TLS版本必须大于1 2下面是解决方法:以我的nginx为例:vi usr local nginx conf vhost www conf修改ssl 2016-12-29 16:04:40 · 阅读全文
nginx用户认证配置
摘要: ngx_http_auth_basic_module模块实现让访问着,只有输入正确的用户密码才允许访问web内容。web上的一些内容不想被其他人知道,但是 2016-11-29 17:30:56 · 阅读全文
云锁模块libsensitiveFilter.so导致tengine/nginx程序异常退出
摘要: 之前系统安装了tengine和云锁防护模块,且一直正常,但近几次重启tengine(nginx)的时候程序一直异常,后端无法检测,nginx没有 2016-09-18 11:06:09 · 阅读全文
tengine的check_shm_size 过小导致内存溢出,后端检测异常
摘要:今天项目上遇到了一些问题,前端使用tengine服务器来检测后端,结果重启tengine服务器后很长时间才恢复正常。于是查看日志错误和系统信息症 2016-09-09 20:55:57 · 阅读全文