
nginx&varnish
iteye_17023
这个作者很懒,什么都没留下…
展开
-
Nginx关于location的匹配规则详解.docx
Nginx关于location的匹配规则详解http://iteye.com/eyesmore/有些童鞋的误区1、 location的匹配顺序是“先匹配正则,再匹配普通”。矫正:location的匹配顺序其实是“先匹配普通,再匹配正则”。我这么说,大家一定会反驳我,因为按“先匹配普通,再匹配正则”解释不了大家平时...2011-08-06 16:42:21 · 138 阅读 · 0 评论 -
Nginx关于Rewrite执行顺序详解.docx
Nginx关于Rewrite执行顺序详解第一篇:break和last的区别Rewrite 模块概述REFER: http://wiki.nginx.org/NginxHttpRewriteModule#rewrite If the directives of this module ...2011-08-07 22:53:37 · 120 阅读 · 0 评论 -
Nginx虚拟主机
Nginx虚拟主机Nginx的虚拟主机既可以支持“基于域名的”,又可以支持“基于IP的”。备注:2012-02-16更新本BLOG,有时我们还需要基于URL前缀(不是域名)的虚拟主机。比如: 我们集团公司 www.example.com很大,有很多子公司,比如有做上海的子公司,于是这个子公司域名是 shanghai.example.com,这个子公司又有...2011-08-08 17:24:49 · 144 阅读 · 0 评论 -
Nginx的location if 太奇怪了
需要请求的图片,其中$station_id是变量 http://host/thumb/200x/$station_id.jpghttp://host/thumb/160x/$station_id.jpg 为了容错,提供了两张默认图片,当$station_id对应的图片找不到的时候,用默认图片替代http://host/thumb/notfound_160x.jpg...2012-10-23 18:55:17 · 530 阅读 · 0 评论