nginx开发
文章平均质量分 80
wangst4321
安静地翱翔,有翅膀就应该去飞翔
展开
-
nginx模块开发入门:hello
转载自Joshua Zhu的博客:http://blog.zhuzhaoyuan.com/2009/08/creating-a-hello-world-nginx-module/1. 下载nginx源码,解压。2. 创建hello模块目录及文件目录结构如下:~/ngx_http_hello_module |--ngx_http_hello_module.c转载 2013-04-07 15:14:17 · 916 阅读 · 0 评论 -
nginx配置数据结构及合并过程
配置数据结构的创建过程初始化cycle->conf_ctxngx_init_cycle()函数中根据nginx模块的数量ngx_max_module创建一个指针数组,如下。每个指针成员,对应nginx模块的配置数据结构。cycle->conf_ctx = ngx_pcalloc(pool, ngx_max_module * sizeof(void *));NGX_COR原创 2013-05-22 17:14:17 · 1789 阅读 · 0 评论 -
Nginx配置文件处理过程
本文总结这段时间阅读Nginx处理配置文件的代码。其中很多参考网上的资料,主要时淘宝的那一份。现在,算是有个大体的了解了。先记录下来,以后有加深的认识,再继续补上。加油!一、配置文件处理的主要步骤和过程nginx.c文件main函数 ngx_max_module = 0; for (i = 0; ngx_modules[i]; i++) { n原创 2013-05-16 11:53:19 · 1195 阅读 · 0 评论 -
python处理中文字符
1.在py文件中使用中文字符unicode.py文件内容如下所示:# -*- coding:utf-8 -*-str_ch = '我们women'uni_ch = u'我们women'print "type:", type(str_ch), "content:", str_ch, repr(str_ch)print "type:", type(uni_ch), "conten原创 2013-08-20 18:17:07 · 1574 阅读 · 0 评论