nginx
lein_wang
打好基础,温故知新
展开
-
nginx fastcgi_cache
参考 http://www.cnxct.com/several-reminder-in-nginx-fastcgi_cache-and-php-session_cache_limiter/点击打开链接http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cachefastcgi_cache_path /da原创 2016-07-20 17:56:51 · 1135 阅读 · 0 评论 -
配置nginx局域网内可访问
#本机server { listen 80; server_name www.stat.me ; root "E:/lein/rkts/rkts/code/stat/public"; autoindex off; location / { index ind原创 2016-12-02 17:08:09 · 18622 阅读 · 0 评论 -
深入分析HTTP状态码502(nginx+php-fpm)
转自: http://www.cnblogs.com/leezhxing/p/6220879.html我们的一个web项目,由于新上城市增多,导致访问量增大,DB压力增大,作为提供接口的业务方,最近被下游反馈大量请求“502”。502,bad gateway,一般都是upstream(这里就是php)出错,对于php,造成502的原因常见的就是脚本执行超过timeout转载 2017-11-08 09:23:41 · 1037 阅读 · 0 评论 -
阿里云配置ssl多端口共用
阿里云购买免费ssl证书:https://jingyan.baidu.com/article/a3aad71aeceea0b1fb00969c.html如果是阿里云买的域名,记得打钩nginx配置ssl:ssl控制台---》订单列表-》点下载按钮--》此处阿里云有提供示例server { listen 443; server_name localhost; ...原创 2018-08-13 14:21:00 · 4204 阅读 · 0 评论 -
Nginx —— 理解HTTP 代理,负载均衡,缓冲(Buffering)和缓存(Caching)
转自:https://n3xtchen.github.io/n3xtchen/nginx/2016/02/19/nginx-port-forwording介绍这里,我们将介绍Nginx的 Http 代理功能(请求(request)通过Nignx传递到后端服务器,进行后续处理)。Nginx经常设置为反向代理(Reverse Proxy)帮助横向扩展(scale out...转载 2019-03-04 17:44:33 · 777 阅读 · 0 评论