<?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; Apache</title>
	<atom:link href="http://www.wenzk.com/archives/tag/apache/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wenzk.com</link>
	<description>http://www.wenzk.com</description>
	<lastBuildDate>Sun, 29 Jan 2012 15:15:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Apache flv streaming done right</title>
		<link>http://www.wenzk.com/archives/648</link>
		<comments>http://www.wenzk.com/archives/648#comments</comments>
		<pubDate>Tue, 02 Mar 2010 14:31:50 +0000</pubDate>
		<dc:creator>ELM</dc:creator>
				<category><![CDATA[榆树网-网络]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flv]]></category>

		<guid isPermaLink="false">http://www.wenzk.com/?p=648</guid>
		<description><![CDATA[Download my tuned version of mod_flvx or the original mod_flv by Paul Querna. Install apxs tool (also avaliable in RPMs for most systems as httpd-devel) Compile and install your module with the following command: Add the following 2 lines to your httpd.conf or create a dedicated /etc/httpd/conf.d/mod_flvx.conf (path depends on your Linux distribution): Restart Apache [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Download my <a href="http://thinkscape.biz/community/mod_flvx.c" target="_new">tuned version of mod_flvx</a> or the  original <a href="http://people.apache.org/%7Epquerna/modules/mod_flvx.c" target="_new">mod_flv</a> by Paul Querna.</li>
<li>Install <samp>apxs</samp> tool (also avaliable in RPMs for most  systems as <samp>httpd-devel</samp>)</li>
<li>Compile and install your module with the following command:
<pre class="brush: plain; title: ; notranslate">apxs -c -i ./mod_flvx.c </pre>
</li>
<li>Add the following 2 lines to your <samp>httpd.conf</samp> or create a  dedicated <samp>/etc/httpd/conf.d/mod_flvx.conf</samp> (path depends on  your Linux distribution):
<pre class="brush: plain; title: ; notranslate">LoadModule flvx_module modules/mod_flvx.so
AddHandler flv-stream .flv </pre>
</li>
<li>Restart Apache (i.e. with service httpd restart)</li>
</ol>
<p>Testing:<br />
# Using curl:</p>
<pre class="brush: plain; title: ; notranslate">curl -I &quot;http://mysite.com/video.flv?start=100000&quot; </pre>
<p>..where 100000 is some byte position in your file. This should show you Content-Type: video/x-flv. Now increase the start= parameter and the Content-Length should be smaller accordingly.<br />
# Using wget:</p>
<pre class="brush: plain; title: ; notranslate">wget -O test.flv &quot;http://mysite.com/video.flv?start=1048576&quot; </pre>
<p>The generated test.flv should be of size originalSize &#8211; 1MB</p>
<p>From: <a href="http://flowplayer.org/forum/5/14679" target="_blank">http://flowplayer.org/forum/5/14679</a></p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://www.wenzk.com/archives/907" title="Video Blogging using Django and Flash(tm) Video (FLV)">Video Blogging using Django and Flash(tm) Video (FLV)</a> (0)</li><li><a href="http://www.wenzk.com/archives/642" title="Wordpress FLV Player插件使用注意事项【官方插件无法正常使用】">Wordpress FLV Player插件使用注意事项【官方插件无法正常使用】</a> (0)</li><li><a href="http://www.wenzk.com/archives/1031" title="通过VLC将媒体流保存成FLV文件">通过VLC将媒体流保存成FLV文件</a> (0)</li><li><a href="http://www.wenzk.com/archives/1029" title="安装和使用ffmpeg转换视频为flv文件（windows和linux）[转载]">安装和使用ffmpeg转换视频为flv文件（windows和linux）[转载]</a> (0)</li><li><a href="http://www.wenzk.com/archives/625" title="测试flv player插件&#8211;她来听我的演唱会">测试flv player插件&#8211;她来听我的演唱会</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.wenzk.com/archives/648/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx 0.8.25就要发布啦</title>
		<link>http://www.wenzk.com/archives/447</link>
		<comments>http://www.wenzk.com/archives/447#comments</comments>
		<pubDate>Sat, 14 Nov 2009 12:27:28 +0000</pubDate>
		<dc:creator>ELM</dc:creator>
				<category><![CDATA[榆树网-网络]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[Web Server]]></category>

		<guid isPermaLink="false">http://www.wenzk.com/?p=447</guid>
		<description><![CDATA[Nginx作为一个优秀的Web服务器、邮件代理和反向代理软件应用越来越广，口碑也很好，我有幸在07年接触了这个东西，觉得配置很灵活，也很简洁，易懂，所以在一些机器上一直用他。 在上一个版本由于启用IPv6后导致ACL不工作，听同事说在0.8.23这个版本就修正了，但是一直没有来得及更新，今天上官方网站看ChangeLog，很偶然的发现0.8.25马上就要发布了，证据如下： 原来Nginx所使用的版本一直落后于发布的版本，今天却跑在前面了，率先使用了暂时未发布的0.8.25，不知道和0.8.24有哪些修改。 相关文章Zimbra-proxy配置步骤 (0)Nginx+Discuz无法登陆后台解决办法 (0)Using X-Accel-Redirect in Nginx to Implement Controlled Downloads (0)Nginx-Fu: X-Accel-Redirect From Remote Servers (0)Apache flv streaming done right (0)]]></description>
			<content:encoded><![CDATA[<p>Nginx作为一个优秀的Web服务器、邮件代理和反向代理软件应用越来越广，口碑也很好，我有幸在07年接触了这个东西，觉得配置很灵活，也很简洁，易懂，所以在一些机器上一直用他。</p>
<p><span id="more-447"></span>在上一个版本由于启用IPv6后导致ACL不工作，听同事说在0.8.23这个版本就修正了，但是一直没有来得及更新，今天上官方网站看ChangeLog，很偶然的发现0.8.25马上就要发布了，证据如下：</p>
<p><a href="http://www.wenzk.com/wp-content/uploads/2009/11/nginx0.8.25.PNG" class="highslide-image" onclick="return hs.expand(this);"><img class="alignnone size-medium wp-image-448" title="nginx0.8.25" src="http://www.wenzk.com/wp-content/uploads/2009/11/nginx0.8.25-300x162.PNG" alt="nginx0.8.25" width="300" height="162" /></a></p>
<p>原来Nginx所使用的版本一直落后于发布的版本，今天却跑在前面了，率先使用了暂时未发布的0.8.25，不知道和0.8.24有哪些修改。</p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://www.wenzk.com/archives/1388" title="Zimbra-proxy配置步骤">Zimbra-proxy配置步骤</a> (0)</li><li><a href="http://www.wenzk.com/archives/1239" title="Nginx+Discuz无法登陆后台解决办法">Nginx+Discuz无法登陆后台解决办法</a> (0)</li><li><a href="http://www.wenzk.com/archives/1075" title="Using X-Accel-Redirect in Nginx to Implement Controlled Downloads">Using X-Accel-Redirect in Nginx to Implement Controlled Downloads</a> (0)</li><li><a href="http://www.wenzk.com/archives/1072" title="Nginx-Fu: X-Accel-Redirect From Remote Servers">Nginx-Fu: X-Accel-Redirect From Remote Servers</a> (0)</li><li><a href="http://www.wenzk.com/archives/648" title="Apache flv streaming done right">Apache flv streaming done right</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.wenzk.com/archives/447/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

