<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></title> 
<link>http://jackxiang.com/index.php</link> 
<description><![CDATA[赢在IT，Playin' with IT,Focus on Killer Application,Marketing Meets Technology.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></copyright>
<item>
<link>http://jackxiang.com/post//</link>
<title><![CDATA[让apache同时监听两个端口]]></title> 
<author>jack &lt;xdy108@126.com&gt;</author>
<category><![CDATA[WEB2.0]]></category>
<pubDate>Sun, 08 May 2011 13:58:21 +0000</pubDate> 
<guid>http://jackxiang.com/post//</guid> 
<description>
<![CDATA[ 
	编辑文件httpd.conf<br/><br/>找到<br/>Listen 80<br/>在下面加一行<br/>Listen 443<br/>Listen 8080<br/>注意：上面这个监听8080必须要，否则就有下面的端口依旧没法打开，通过：apachectl -t ,检查配置也是Ok的。<br/>再找到我虚拟主机部分的：<br/><br/>NameVirtualHost *:8080<br/>NameVirtualHost *:443<br/><br/><br/><br/>8080：<br/><textarea name="code" class="html" rows="15" cols="100">
 <VirtualHost *:8080>
&nbsp;&nbsp;&nbsp;&nbsp; ServerAdmin stonelv@tencent.com
&nbsp;&nbsp;&nbsp;&nbsp; DocumentRoot /usr/local/webserver/apache2/htdocs/
&nbsp;&nbsp;&nbsp;&nbsp; ServerName view.jackxiang.com
&nbsp;&nbsp;&nbsp;&nbsp; ScriptAlias /cgi-bin/ "/usr/local/webserver/apache2/cgi-bin/"
&nbsp;&nbsp;&nbsp;&nbsp; ErrorLog&nbsp;&nbsp; /tmp/apache_anta.log
&nbsp;&nbsp;&nbsp;&nbsp; CustomLog /tmp/apache_anta.log common
&nbsp;&nbsp;&nbsp;&nbsp; <Directory /viewvc>
&nbsp;&nbsp;&nbsp;&nbsp; Options Indexes MultiViews
&nbsp;&nbsp;&nbsp;&nbsp; AllowOverride None
&nbsp;&nbsp;&nbsp;&nbsp; Order allow,deny
&nbsp;&nbsp;&nbsp;&nbsp; Allow from all
&nbsp;&nbsp;&nbsp;&nbsp; </Directory>
 </VirtualHost>

</textarea><br/>下面是抄下其他人的。。。<br/><br/><br/>NameVirtualHost 210.21.112.*:80<br/><br/><VirtualHost 210.21.112.*:80><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ServerAdmin ilos4@126.com<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DocumentRoot /home/easy<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ServerName phpv.net<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ServerAlias www.phpv.net<br/></VirtualHost><br/><br/>在其下方加入<br/>NameVirtualHost 210.21.112.*:88<br/><br/><VirtualHost 210.21.112.*:88><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ServerAdmin ilos4@126.com<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DocumentRoot /home/easy<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ServerName phpv.net<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ServerAlias www.phpv.net<br/></VirtualHost>
]]>
</description>
</item><item>
<link>http://jackxiang.com/post//#blogcomment</link>
<title><![CDATA[[评论] 让apache同时监听两个端口]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://jackxiang.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>