view xml/en/docs/http/ngx_http_flv_module.xml @ 154:dfc9d4338fef

Rewording.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 26 Oct 2011 09:19:41 +0000
parents 0188d11c77dd
children bfe3eff81d04
line wrap: on
line source

<?xml version="1.0" encoding="utf-8"?>

<!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">

<module name="Module ngx_http_flv_module"
        link="/en/docs/http/ngx_http_flv_module.html"
        lang="en">

<section id="summary">

<para>
The module <code>ngx_http_flv_module</code> provides pseudo-streaming
server-side support for Flash Video (FLV) files.
</para>

<para>
It handles requests with the <parameter>start</parameter> argument in
the request URI’s query string specially, by sending back the contents
of a file starting from the requested byte offset, and with the FLV
header prepended.
</para>

<para>
This module is not built by default, it should be enabled with the
<code>--with-http_flv_module</code>
configuration parameter.
</para>

</section>


<section name="Example Configuration" id="example">

<para>
<example>
    location ~ \.flv$ {
        flv;
    }
</example>
</para>

</section>


<section name="Directives" id="directives">

<directive name="flv">
<syntax/>
<default/>
<context>location</context>

<para>
Turns on module processing in a surrounding location.
</para>

</directive>

</section>

</module>