nginx
stevenprime
这个作者很懒,什么都没留下…
展开
-
nginx开发
( 2012-02-03 09:30:56 )Yichun: 因为许多公司在使用了我们的东西之后,并没有告诉我们,所以我没有应用的完整列表,只列举我所知道的:淘宝的“淘宝灰度发布”、“淘宝弹性私有云平台”、“淘宝 P4P 报表”、“淘宝量子统计”都使用了 ngx_openresty去哪儿网的机票等前端业务接口大量使用了 ngx_openresty新浪的一些产品(新浪微盘?原创 2012-02-03 09:47:30 · 1019 阅读 · 0 评论 -
openresty 编译出错
debian下运行openresty的编译命令出错luaconf.h:275: fatal error: readline/readline.h: 没有那个文件或目录则需要安装readline库解决办法:apt-get install libreadline5-dev然后即可完成编译转载 2012-07-02 13:48:08 · 1388 阅读 · 0 评论 -
nginx basic auth 登陆验证模块
#1. 新建一个pw.pl文件专门用来生成密码#!/usr/bin/perluse strict;my $pw=$ARGV[0];print crypt($pw,$pw)."\n";#2. 修改Nginx配置文件,添加,用户名和密码存放的位置auth_basic "nginx status";auth_basic_user_file /usr/local/we转载 2012-07-23 19:40:34 · 6100 阅读 · 0 评论 -
nginx location 执行顺序
locationSyntax:location [ = | ~ | ~* | ^~ ] uri { ... }location { } @ name { ... }Default: Context:serverlocationReference:location原创 2012-11-29 18:46:50 · 3736 阅读 · 0 评论