专注 K8S研究
发布时间:2018-11-15 20:01:35
nginx 使用 ngx_http_limit_req_module和ngx_http_limit_conn_module 来限制对资源的请求这种方法,对于CC攻击(Challenge Collapsar)or DDOS(分布式拒绝服务)有一定的用处1、HttpLimitReqModule限制request 事实上就是 the processing rate of requests coming from a single IP address,使用.........【阅读全文】
发布时间:2018-11-12 21:42:23
在透明代理下,如果不做任何配置Tomcat 认为所有的请求都是 Nginx 发出来的,这样会导致如下的错误结果:配置 Nginx 的转发选项:proxy_set_header Host $host;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For $pro.........【阅读全文】
发布时间:2018-11-12 17:51:20
二 压缩问题 后端服务器开启了压缩,而nginx没有解压缩 ,解决方法 proxy_set_header Accept- Encoding ' ';#让后端不要返回压缩(gzip或deflate)的内容:81server {listen 81;server_name bothlog.com;location / {.........【阅读全文】