2020年5月24日

Nginx系列(十二)——高并发性能参数配置

摘要: 可以使用一些常见的压测工具测试高并发性能情况,例如ab,JMeter, Locust,Gatling(一)配置长连接 http { keepalive_requests 320; keepalive_timeout 300s; ... } #keepalive_requests,默认为100,在高并 阅读全文

posted @ 2020-05-24 23:56 标配的小号 阅读(564) 评论(0) 推荐(0) 编辑

Nginx系列(十一)——通过日志进行故障排查

摘要: Debugging and Troubleshooting with Access Logs, Error Logs, and Request Tracing故障排查 Configuring Access Logs请求日志配置http { log_format geoproxy #日志格式命名为ge 阅读全文

posted @ 2020-05-24 23:31 标配的小号 阅读(568) 评论(0) 推荐(0) 编辑

Nginx系列(十)——可用性监控进阶

摘要: Advanced Activity Monitoring可用性监控进阶 Enable NGINX Open Source Stub Status启用Nginx基础监控location /stub_status { stub_status; allow 127.0.0.1; deny all; # S 阅读全文

posted @ 2020-05-24 23:07 标配的小号 阅读(244) 评论(0) 推荐(0) 编辑

Nginx系列(九)——容器/微服务

摘要: Containers/Microservices容器/微服务Using the Official NGINX Imagedocker run --name my-nginx -p 80:80 -v /path/to/content:/usr/share/nginx/html:ro -d nginx 阅读全文

posted @ 2020-05-24 22:24 标配的小号 阅读(192) 评论(0) 推荐(0) 编辑

Nginx系列(八)——数字媒体流

摘要: Sophisticated Media StreamingMPEG-4和Flash格式媒体流Serving MP4 and FLV数字媒体流http { server { ... location /videos/ { mp4; #告诉Nginx,文件夹viedos里的文件是MP4格式 } loca 阅读全文

posted @ 2020-05-24 16:20 标配的小号 阅读(171) 评论(0) 推荐(0) 编辑

Nginx系列(七)——HTTP/2

摘要: HTTP/2Basic Configurationserver { listen 443 ssl http2 default_server; #添加http2参数 ssl_certificate server.crt; ssl_certificate_key server.key; ...} gRP 阅读全文

posted @ 2020-05-24 16:11 标配的小号 阅读(387) 评论(0) 推荐(0) 编辑

Nginx系列(六)——安全控制

摘要: (一)基于IP地址管控 location /admin/ { deny 10.0.0.1; allow 10.0.0.0/20; #alllow后面的deny all不能少,否则无法生效 allow 2001:0db8::/32; #IPV6 deny all; #其他地址返回403状态码} (二) 阅读全文

posted @ 2020-05-24 12:38 标配的小号 阅读(273) 评论(0) 推荐(0) 编辑

导航