在 /usr/local/nginx/conf/nginx.conf 的默认 server 段中,保留默认的 location 信息(之前测试的 location 配置删除): location / { root html; index ...
分类:
其他好文 时间:
2015-08-05 00:46:46
阅读次数:
252
在 /usr/local/nginx/conf/nginx.conf 的 server 段中,location 表示根据 URI 来进行不同的定位:把网站的不同部分定位到不同的处理方式上,例如遇到 .php 文件如何调用 PHP 解释器。location 语法:location [=|~|~*|^~...
分类:
其他好文 时间:
2015-08-04 00:18:42
阅读次数:
240
要在第二天的凌晨把前一天的访问日志切割备份,并以时间作为文件名,例如:access.20150728.log,这就需要在 Linux 中格式化时间,例如:[root@localhost ~]# date2015年 07月 28日 星期二 02:33:02 CST [root@localhost ~....
分类:
其他好文 时间:
2015-07-28 22:46:44
阅读次数:
187
打开 nginx.conf:[root@localhost ~]# cd /usr/local/nginx/conf[root@localhost conf]# vim nginx.conf在默认的 server 段中包含以下内容:#access_log logs/access.log main.....
分类:
其他好文 时间:
2015-07-26 15:31:03
阅读次数:
109
Nginx 可以承受 3 万并发连接数,Apache 默认最大连接数是 256 个。编译安装① 下载在 Nginx 的主页http://nginx.org/下载最新的stable version(稳定版)Nginx 1.8.0(http://nginx.org/en/download.html-ht...
分类:
其他好文 时间:
2015-07-21 23:30:42
阅读次数:
271
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;#脚本文件请求的路径fastcgi_param QUERY_STRING $query_string; #请求的参数;如?a...
分类:
其他好文 时间:
2015-05-13 12:46:19
阅读次数:
137
参考http://syre.blogbus.com/logs/20092011.htmlhttp://www.mike.org.cn/articles/what-is-cgi-fastcgi-php-fpm-spawn-fcgi/http://www.larro.cn/?p=35nginx php ...
分类:
Web程序 时间:
2015-04-01 10:52:06
阅读次数:
198
看Nginx也有几星期了,还没看完的还是很多,事件模型的具体实现、accept_mutex等、http框架等。一边看书,也一边旁敲侧击地搜罗了其他知识。因此,打算一边学习,一边按照自己的流程和理解简单写点总结,提纲如下。1 NginX 简介 Igor Sysoev和F5项目 NginX特点:高并发....
分类:
其他好文 时间:
2014-12-03 01:39:51
阅读次数:
168
本文主要对nginx的配置做重点说明,关于nginx的其它基本概念,建议参考官网描述,这里推荐Nginx Beginner's Guide这篇文档,对初学者快速认识nginx很有帮助。
显然,发挥nginx强大优势的前提是熟悉其配置文件并进行合理的配置,而学习nginx配置时,最重要的一点是建立如下概念:
The most important is that nginx is a...
分类:
其他好文 时间:
2014-11-13 16:44:06
阅读次数:
252
通配 hash 表ngx_hash_init 实现注释:http://blog.csdn.net/gsnumen/article/details/7817396ngx_hash_init之后的结构制图:http://blog.csdn.net/livelylittlefish/article/det...
分类:
其他好文 时间:
2014-10-14 16:29:28
阅读次数:
170