view xml/cn/docs/http/ngx_http_flv_module.xml @ 1878:127ae107e5a9

Removed clause about shared memory and Windows versions with ASLR. Starting with nginx 1.9.0 shared memory can be used on Windows versions with address space layout randomization.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 26 Dec 2016 19:38:06 +0300
parents 9f9a427a73eb
children
line wrap: on
line source

<?xml version="1.0"?>

<!--
  Copyright (C) Igor Sysoev
  Copyright (C) Nginx, Inc.
  -->

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

<module name="ngx_http_flv_module 模块"
        link="/cn/docs/http/ngx_http_flv_module.html"
        lang="cn"
        translator="litianqing"
        rev="1">

<section id="summary">

<para>
模块<literal>ngx_http_flv_module </literal> 为Flash Video(FLV)文件
提供服务端伪流媒体支持
</para>

<para>
通过返回以请求偏移位置开始的文件内容,该模块专门处理
在查询串中有<literal>start</literal>参数的请求,
和有预先设置到FLV头部的请求。
</para>

<para>
这个模块并不是默认构建的,必须通过配置参数
<literal>--with-http_flv_module</literal>
来启用。
</para>

</section>


<section id="example" name="配置范例">

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

</section>


<section id="directives" name="指令">
<directive name="flv">
<syntax/>
<default/>
<context>location</context>

<para>
在当前location里使用这个模块处理请求。
</para>

</directive>

</section>

</module>