Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
nginx
GitHub Repository: nginx/nginx.org
Path: blob/main/xml/en/docs/http/ngx_http_flv_module.xml
1 views
1
<?xml version="1.0"?>
2
3
<!--
4
Copyright (C) Igor Sysoev
5
Copyright (C) Nginx, Inc.
6
-->
7
8
<!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9
10
<module name="Module ngx_http_flv_module"
11
link="/en/docs/http/ngx_http_flv_module.html"
12
lang="en"
13
rev="1">
14
15
<section id="summary">
16
17
<para>
18
The <literal>ngx_http_flv_module</literal> module provides pseudo-streaming
19
server-side support for Flash Video (FLV) files.
20
</para>
21
22
<para>
23
It handles requests with the <literal>start</literal> argument in
24
the request URI’s query string specially, by sending back the contents
25
of a file starting from the requested byte offset and with the prepended FLV
26
header.
27
</para>
28
29
<para>
30
This module is not built by default, it should be enabled with the
31
<literal>--with-http_flv_module</literal>
32
configuration parameter.
33
</para>
34
35
</section>
36
37
38
<section id="example" name="Example Configuration">
39
40
<para>
41
<example>
42
location ~ \.flv$ {
43
flv;
44
}
45
</example>
46
</para>
47
48
</section>
49
50
51
<section id="directives" name="Directives">
52
53
<directive name="flv">
54
<syntax/>
55
<default/>
56
<context>location</context>
57
58
<para>
59
Turns on module processing in a surrounding location.
60
</para>
61
62
</directive>
63
64
</section>
65
66
</module>
67
68