comparison xml/en/docs/http/ngx_http_flv_module.xml @ 151:0188d11c77dd

Initial translation of the ngx_http_flv_module documentation.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 25 Oct 2011 18:00:49 +0000
parents
children dfc9d4338fef
comparison
equal deleted inserted replaced
150:39dd017f016f 151:0188d11c77dd
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
4
5 <module name="Module ngx_http_flv_module"
6 link="/en/docs/http/ngx_http_flv_module.html"
7 lang="en">
8
9 <section id="summary">
10
11 <para>
12 The module <code>ngx_http_flv_module</code> does special processing
13 of the transmitted files: when transmitting a file starting from the
14 offset specified by the “<parameter>start=XXX</parameter>” arguments
15 in the request line, it adds FLV header before the requested file.
16 </para>
17
18 <para>
19 This module is not built by default, it should be enabled with the
20 <code>--with-http_flv_module</code>
21 configuration parameter.
22 </para>
23
24 </section>
25
26
27 <section name="Example Configuration" id="example">
28
29 <para>
30 <example>
31 location ~ \.flv$ {
32 flv;
33 }
34 </example>
35 </para>
36
37 </section>
38
39
40 <section name="Directives" id="directives">
41
42 <directive name="flv">
43 <syntax/>
44 <default/>
45 <context>location</context>
46
47 <para>
48 Enables special processing of the transmitted files.
49 </para>
50
51 </directive>
52
53 </section>
54
55 </module>