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