<?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>baalchina &#187; https</title>
	<atom:link href="http://www.baalchina.net/tag/https/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.baalchina.net</link>
	<description>baalchina技术日志</description>
	<lastBuildDate>Mon, 19 Jul 2010 08:30:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Discuz!修改模板支持https登陆</title>
		<link>http://www.baalchina.net/2008/08/discuz-https/</link>
		<comments>http://www.baalchina.net/2008/08/discuz-https/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 08:17:22 +0000</pubDate>
		<dc:creator>baalchina</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[网页制作]]></category>
		<category><![CDATA[Discuz]]></category>
		<category><![CDATA[https]]></category>

		<guid isPermaLink="false">http://baalchina.nau.edu.cn/?p=136</guid>
		<description><![CDATA[服务器端的https登陆设置请看
http://baalchina.nau.edu.cn/2008/08/nginx-https-rewrite/
 
大概了解下用到的模板，包括header.htm，footer.htm，以及logging.htm。另外，登陆成功/失败使用的是showmessage.htm模板。
首先，以header.htm和footer.htm为基础，新建header_ssl.htm以及footer.htm，在logging.php中将相应引用模板的位置修改为引用新建的ssl模板。
接下来修改对应模板。这个稍有点复杂，需要一点点调试。去掉所有的外联的图片、外联的css以及js---通过将他们修改为文件内部引用。
其中：
common.js不需要。可以去掉。
css中，注意这个：
.mainbox
他引用了一个
{HEADERBGCODE};
变量。这个其实就是一个background的图片。所以需要把这个删除。否则还是会提示“存在不安全的内容”
其他的就不多说了。包括footer中的连接等。很多，需要自己一个个去调试。
另外是showmessage模板。这个用于登陆成功、失败之后的跳转页面。
首先修改global.func.php，找到showmessage这个函数，然后复制，将函数名改成showmessagessl，或者随便其他什么名字。
将函数中用到的模板修改为showmessgae_ssl
修改logging.php，将所有的showmessage修改为showmessagessl。
修改showmessage_ssl模板，将header和footer用前面的header_ssl和footer_ssl代替。
基本搞定。
 
现在还是有一个提示，这个提示是登陆成功、失败之后访问/uc/api.php造成的。这个问题还需要考虑下怎么做。感觉在服务器上处理比较方便。
]]></description>
			<content:encoded><![CDATA[<p>服务器端的https登陆设置请看<br />
<a href="http://baalchina.nau.edu.cn/2008/08/nginx-https-rewrite/">http://baalchina.nau.edu.cn/2008/08/nginx-https-rewrite/</a></p>
<p> </p>
<h2>大概了解下用到的模板，包括header.htm，footer.htm，以及logging.htm。另外，登陆成功/失败使用的是showmessage.htm模板。</h2>
<p>首先，以header.htm和footer.htm为基础，新建header_ssl.htm以及footer.htm，在logging.php中将相应引用模板的位置修改为引用新建的ssl模板。</p>
<p>接下来修改对应模板。这个稍有点复杂，需要一点点调试。去掉所有的外联的图片、外联的css以及js---通过将他们修改为文件内部引用。</p>
<p>其中：<br />
common.js不需要。可以去掉。<br />
css中，注意这个：</p>
<blockquote><p>.mainbox</p></blockquote>
<p>他引用了一个</p>
<blockquote><p>{HEADERBGCODE};</p></blockquote>
<p>变量。这个其实就是一个background的图片。所以需要把这个删除。否则还是会提示“存在不安全的内容”</p>
<p>其他的就不多说了。包括footer中的连接等。很多，需要自己一个个去调试。</p>
<h2>另外是showmessage模板。这个用于登陆成功、失败之后的跳转页面。</h2>
<p>首先修改global.func.php，找到showmessage这个函数，然后复制，将函数名改成showmessagessl，或者随便其他什么名字。</p>
<p>将函数中用到的模板修改为showmessgae_ssl</p>
<p>修改logging.php，将所有的showmessage修改为showmessagessl。</p>
<p>修改showmessage_ssl模板，将header和footer用前面的header_ssl和footer_ssl代替。</p>
<p>基本搞定。</p>
<p> </p>
<p>现在还是有一个提示，这个提示是登陆成功、失败之后访问/uc/api.php造成的。这个问题还需要考虑下怎么做。感觉在服务器上处理比较方便。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.baalchina.net/2008/08/discuz-https/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx/Apache的SSL配置</title>
		<link>http://www.baalchina.net/2008/08/nginxapache%e7%9a%84ssl%e9%85%8d%e7%bd%ae/</link>
		<comments>http://www.baalchina.net/2008/08/nginxapache%e7%9a%84ssl%e9%85%8d%e7%bd%ae/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 14:32:14 +0000</pubDate>
		<dc:creator>baalchina</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://baalchina.nau.edu.cn/?p=63</guid>
		<description><![CDATA[

首先需要升级OpenSSL和OpenSSH。后者顺带升级下，并非必须。注意顺序，先SSL再SSH。



?View Code BASH1
2
3
4
5
6
7
8
9
#cd /usr/local/src
#wget http://www.openssl.org/source/openssl-0.9.8e.tar.gz
#wget ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-4.6p1.tar.gz
#tar xzvf openssl-0.9.8e.tar.gz
#cd openssl-0.9.8e
#./config --prefix=/usr/local/openssl
#make
#make test
#make install


?View Code BASH1
2
3
4
5
6
#cd ..
#tar xzvf openssh-4.6p1.tar.gz
#cd openssh-4.6p1
#./configure --prefix=/usr --with-pam --with-zlib=/usr/local/zlib --with-ssl-dir=/usr/local/openssl --with-md5-passwords --mandir=/usr/share/man
#make
#make install

用

?View Code BASH#ssh –V

查看版本。


接下来生成对应服务器的key/crt文件



?View Code BASH1
&#91;root@bbs ~&#93;#openssl genrsa -des3 -out server.key 1024

这里会提示你输入一个密码。
根据Key生成一个CSR

?View Code BASH1
&#91;root@bbs ~&#93;#openssl req -new -key server.key -out server.csr

自己给自己颁发一个证书

?View Code BASH1
&#91;root@bbs ~&#93;# openssl req -new -x509 -nodes -sha1 -days [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>
<h3>首先需要升级OpenSSL和OpenSSH。后者顺带升级下，并非必须。注意顺序，先SSL再SSH。</h3>
</li>
</ol>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p63code9'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p639"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code" id="p63code9"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#cd /usr/local/src</span>
<span style="color: #666666; font-style: italic;">#wget http://www.openssl.org/source/openssl-0.9.8e.tar.gz</span>
<span style="color: #666666; font-style: italic;">#wget ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-4.6p1.tar.gz</span>
<span style="color: #666666; font-style: italic;">#tar xzvf openssl-0.9.8e.tar.gz</span>
<span style="color: #666666; font-style: italic;">#cd openssl-0.9.8e</span>
<span style="color: #666666; font-style: italic;">#./config --prefix=/usr/local/openssl</span>
<span style="color: #666666; font-style: italic;">#make</span>
<span style="color: #666666; font-style: italic;">#make test</span>
<span style="color: #666666; font-style: italic;">#make install</span></pre></td></tr></table></div>


<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p63code10'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p6310"><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code" id="p63code10"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#cd ..</span>
<span style="color: #666666; font-style: italic;">#tar xzvf openssh-4.6p1.tar.gz</span>
<span style="color: #666666; font-style: italic;">#cd openssh-4.6p1</span>
<span style="color: #666666; font-style: italic;">#./configure --prefix=/usr --with-pam --with-zlib=/usr/local/zlib --with-ssl-dir=/usr/local/openssl --with-md5-passwords --mandir=/usr/share/man</span>
<span style="color: #666666; font-style: italic;">#make</span>
<span style="color: #666666; font-style: italic;">#make install</span></pre></td></tr></table></div>

<p>用</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p63code11'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p6311"><td class="code" id="p63code11"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#ssh –V</span></pre></td></tr></table></div>

<p>查看版本。</p>
<ol>
<li>
<h3>接下来生成对应服务器的key/crt文件</h3>
</li>
</ol>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p63code12'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p6312"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p63code12"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>root<span style="color: #000000; font-weight: bold;">@</span>bbs ~<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #666666; font-style: italic;">#openssl genrsa -des3 -out server.key 1024</span></pre></td></tr></table></div>

<p>这里会提示你输入一个密码。</p>
<p>根据Key生成一个CSR</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p63code13'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p6313"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p63code13"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>root<span style="color: #000000; font-weight: bold;">@</span>bbs ~<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #666666; font-style: italic;">#openssl req -new -key server.key -out server.csr</span></pre></td></tr></table></div>

<p>自己给自己颁发一个证书</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p63code14'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p6314"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p63code14"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>root<span style="color: #000000; font-weight: bold;">@</span>bbs ~<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #666666; font-style: italic;"># openssl req -new -x509 -nodes -sha1 -days 365 -key server.key -out server.crt</span></pre></td></tr></table></div>

<p>ok，保存好.crt和.key文件。.csr文件不需要了。</p>
<p>Apache使用的是.crt+.key文件。而nginx使用的是.pem+.key文件。<br />
.pem文件很简单，直接把.crt和.key复制出来，粘贴到新的.pem文件里就行了。</p>
<p>Apache的配置。虚拟主机部分增加：</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p63code15'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p6315"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code" id="p63code15"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;VirtualHost</span> bbs.nau.edu.cn:443<span style="color: #000000; font-weight: bold;">&gt;</span></span>
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /data/certfile/server.crt
SSLCertificateKeyFile /data/certfile/server.key
BrowserMatch &quot;.*MSIE.*&quot; \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
ServerAdmin baalchina@nau.edu.cn
DocumentRoot /data/web/bbs
ServerName bbs.nau.edu.cn:443
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/VirtualHost<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>如果是nginx，那么：</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p63code16'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p6316"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
</pre></td><td class="code" id="p63code16"><pre class="php" style="font-family:monospace;">server <span style="color: #009900;">&#123;</span>
   listen       <span style="color: #cc66cc;">443</span><span style="color: #339933;">;</span>
   server_name  bbs<span style="color: #339933;">.</span>nau<span style="color: #339933;">.</span>edu<span style="color: #339933;">.</span>cn<span style="color: #339933;">;</span>
&nbsp;
   <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span> <span style="color: #339933;">!</span>~<span style="color: #339933;">*</span> <span style="color: #0000ff;">&quot;/logging.php$&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
   rewrite ^<span style="color: #339933;">/</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">.*</span><span style="color: #009900;">&#41;</span>$ http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//$host/$1 redirect;</span>
   <span style="color: #009900;">&#125;</span>
&nbsp;
   ssl                  on<span style="color: #339933;">;</span>
   ssl_certificate      <span style="color: #339933;">/</span>data<span style="color: #339933;">/</span>certfile<span style="color: #339933;">/</span>server<span style="color: #339933;">.</span>pem<span style="color: #339933;">;</span>
   ssl_certificate_key  <span style="color: #339933;">/</span>data<span style="color: #339933;">/</span>certfile<span style="color: #339933;">/</span>server<span style="color: #339933;">.</span><a href="http://www.php.net/key"><span style="color: #990000;">key</span></a><span style="color: #339933;">;</span>
   ssl_session_timeout  5m<span style="color: #339933;">;</span>
   ssl_protocols  SSLv2 SSLv3 TLSv1<span style="color: #339933;">;</span>
   ssl_ciphers  ALL<span style="color: #339933;">:!</span>ADH<span style="color: #339933;">:!</span>EXPORT56<span style="color: #339933;">:</span>RC4<span style="color: #339933;">+</span>RSA<span style="color: #339933;">:+</span>HIGH<span style="color: #339933;">:+</span>MEDIUM<span style="color: #339933;">:+</span>LOW<span style="color: #339933;">:+</span>SSLv2<span style="color: #339933;">:+</span><a href="http://www.php.net/exp"><span style="color: #990000;">EXP</span></a><span style="color: #339933;">;</span>
   ssl_prefer_server_ciphers   on<span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>其他部分和http server是一样的。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.baalchina.net/2008/08/nginxapache%e7%9a%84ssl%e9%85%8d%e7%bd%ae/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Nginx下只针对logging.php进行https处理的重写规则</title>
		<link>http://www.baalchina.net/2008/08/nginx-https-rewrite/</link>
		<comments>http://www.baalchina.net/2008/08/nginx-https-rewrite/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 13:01:57 +0000</pubDate>
		<dc:creator>baalchina</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[rewrite]]></category>

		<guid isPermaLink="false">http://baalchina.nau.edu.cn/?p=51</guid>
		<description><![CDATA[在https server下加入如下配置：

?View Code PHPif &#40;$uri !~* &#34;/logging.php$&#34;&#41;
&#123;
rewrite ^/&#40;.*&#41;$ http://$host/$1 redirect;
&#125;

在http server下加入如下配置：

?View Code PHPif &#40;$uri ~* &#34;/logging.php$&#34;&#41;
&#123;
rewrite ^/&#40;.*&#41;$ https://$host/$1 redirect;
&#125;

最后结果就是，用户会且只会在访问logging.php的情况下，才会通过https访问。有效地避免了arp欺骗、嗅探等方法盗取账号密码的行为。
感谢nginx作者的帮助。
http://marc.info/?l=nginx&#38;m=121663148102512&#38;w=2
]]></description>
			<content:encoded><![CDATA[<p>在https server下加入如下配置：</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p51code19'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p5119"><td class="code" id="p51code19"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span> <span style="color: #339933;">!</span>~<span style="color: #339933;">*</span> <span style="color: #0000ff;">&quot;/logging.php$&quot;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
rewrite ^<span style="color: #339933;">/</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">.*</span><span style="color: #009900;">&#41;</span>$ http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//$host/$1 redirect;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>在http server下加入如下配置：</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p51code20'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p5120"><td class="code" id="p51code20"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span> ~<span style="color: #339933;">*</span> <span style="color: #0000ff;">&quot;/logging.php$&quot;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
rewrite ^<span style="color: #339933;">/</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">.*</span><span style="color: #009900;">&#41;</span>$ https<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//$host/$1 redirect;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>最后结果就是，用户会且只会在访问logging.php的情况下，才会通过https访问。有效地避免了arp欺骗、嗅探等方法盗取账号密码的行为。</p>
<p>感谢nginx作者的帮助。<br />
<a href="http://marc.info/?l=nginx&amp;m=121663148102512&amp;w=2">http://marc.info/?l=nginx&amp;m=121663148102512&amp;w=2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.baalchina.net/2008/08/nginx-https-rewrite/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
