<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>小宇日志 &#187; nginx</title>
	<atom:link href="http://www.xiaoyulog.com/topic/tag/nginx/feed" rel="self" type="application/rss+xml" />
	<link>http://www.xiaoyulog.com</link>
	<description>美国VPS&#124;美国服务器&#124;美国主机&#124;VPN</description>
	<lastBuildDate>Tue, 31 Aug 2010 13:40:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>牛人的服务器 一天顶1500万PHP请求</title>
		<link>http://www.xiaoyulog.com/topic/1238.html</link>
		<comments>http://www.xiaoyulog.com/topic/1238.html#comments</comments>
		<pubDate>Sun, 07 Feb 2010 19:10:18 +0000</pubDate>
		<dc:creator>小宇</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cents]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[牛人]]></category>

		<guid isPermaLink="false">http://www.xiaoyulog.com/?p=1238</guid>
		<description><![CDATA[在andy的博客看到这个帖子.觉得很有意思特别转过来 今天发现我的Nginx和php-cgi进程很占内存，一直找不到原因，似乎跟64位系统有关 我的每个Nginx进程占用40M内存，php-cgi每个进程占用也是40M，真是郁闷 感觉不对劲，上老外论坛求助，人家的内存占用比我小几倍，一台服务器一天顶了1500万请求，使用的是CentOS 5.4 32bit nginx 1 box: 8-core, 4GB RAM, RAID 1 CentOS 5.4 32 bit PHP 5.3 About 15 millions PHP requests per day 他是怎么实现的呢 What I have done - Custom build &#8211; Static linked - Remove unneeded PHP extensions 看图，负载真变态，已经高到30，甚至60了，真怀疑能不能打开了 我的经验告诉我，超过5已经很可怕了，没想到还有这么变态的 大家看看吧！]]></description>
		<wfw:commentRss>http://www.xiaoyulog.com/topic/1238.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>NGINX配置ssl+https站点的方法</title>
		<link>http://www.xiaoyulog.com/topic/1222.html</link>
		<comments>http://www.xiaoyulog.com/topic/1222.html#comments</comments>
		<pubDate>Wed, 06 Jan 2010 17:30:17 +0000</pubDate>
		<dc:creator>小宇</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[配置]]></category>

		<guid isPermaLink="false">http://www.xiaoyulog.com/?p=1222</guid>
		<description><![CDATA[今天给几个站点配置了认证的 ssl 证书，但是苦于自己技术不过关，或是知识不足，导致还有那么一小点 Bug 的出现，这里就我配置 HTTPS 站点的经验来总结一下吧。 一、什么是 SSL 证书，什么是 HTTPS 网站？ SSL证书是数字证书的一种，类似于驾驶证、护照和营业执照的电子副本。SSL证书通过在客户端浏览器和Web服务器之间建立一条SSL安全通道（Secure socket layer(SSL)安全协议是由Netscape Communication公司设计开发。该安全协议主要用来提供对用户和服务器的认证；对传送的数据进行加密和隐藏；确保数据在传送中不被改变，即数据的完整性，现已成为该领域中全球化的标准。由于SSL技术已建立到所有主要的浏览器和WEB服务器程序中，因此，仅需安装服务器证书就可以激活该功能了）。即通过它可以激活SSL协议，实现数据信息在客户端和服务器之间的加密传输，可以防止数据信息的泄露。保证了双方传递信息的安全性，而且用户可以通过服务器证书验证他所访问的网站是否是真实可靠。（来源） 二、什么网站需要 SSL 证书？ 就我遇到过的网站，配置了认证的证书的，大概有这么几类： 1、购物交易类网站 这个就不用说了，支付宝、Paypal等肯定会加密以保护你的密码安全。 2、注册类站点 有些大站点，注册会员或者登陆的时候，会专门通过SSL通道，来保护你的密码安全，比如：https://www.name.com/account/login.php 3、在线代理类站点 这个，为了防止天朝某个部分嗅探出没加密的内容，嗯哼，就不说了。 4、耍酷类 比如我…… 三、Nginx 下如何配置证书 之前，我介绍过如何购买并且配置 Godaddy 的证书：《Godaddy SSL证书以及 Nginx 配置HTTPS方法》，后来因为一个小失误，每次修改 Nginx 配置，重启 Nginx 的时候都会输入密码，所以之后买了 Comodo 的证书，并且让 @Paveo 帮我全部配置好，哈哈。 但是总请别人来配置总不太好意思，所以我得自己研究一下，然后，就当作记录和总结吧。 1、Nginx 配置 ssl 模块 默认 Nginx 是没有 ssl 模块的，而我的 VPS [...]]]></description>
		<wfw:commentRss>http://www.xiaoyulog.com/topic/1222.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>又换回了Wonder的记事本的名字和NGINX</title>
		<link>http://www.xiaoyulog.com/topic/888.html</link>
		<comments>http://www.xiaoyulog.com/topic/888.html#comments</comments>
		<pubDate>Tue, 27 Oct 2009 03:45:06 +0000</pubDate>
		<dc:creator>小宇</dc:creator>
				<category><![CDATA[心情]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[Wonder]]></category>

		<guid isPermaLink="false">http://www.tt007.com.cn/?p=888</guid>
		<description><![CDATA[优化了一下,希望效果能好起来]]></description>
		<wfw:commentRss>http://www.xiaoyulog.com/topic/888.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: www.xiaoyulog.com @ 2010-09-09 02:22:15 -->