nginx
wxy_fighting
这个作者很懒,什么都没留下…
展开
-
Nginx Location配置总结
语法规则: location [=|~|~*|^~] /uri/ { … } = 开头表示精确匹配 ^~ 开头表示uri以某个常规字符串开头,理解为匹配 url路径即可。nginx不对url做编码,因此请求为/static/20%/aa,可以被规则^~ /static/ /aa匹配到(注意是空格)。 ~ 开头表示区分大小写的正则匹配 ~* 开原创 2013-06-18 14:30:02 · 979 阅读 · 0 评论 -
windows下nginx配置说明
config 下的 nginx.conf配置如下: #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events原创 2013-06-18 14:35:47 · 1158 阅读 · 0 评论