comparison xml/en/docs/http/ngx_http_hls_module.xml @ 2206:5cacd6fffade

Eliminated some examples of unsafe prefix locations.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 27 Apr 2018 09:59:51 +0300
parents 6650933c46d4
children
comparison
equal deleted inserted replaced
2205:e325638a6f34 2206:5cacd6fffade
7 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 7 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
8 8
9 <module name="Module ngx_http_hls_module" 9 <module name="Module ngx_http_hls_module"
10 link="/en/docs/http/ngx_http_hls_module.html" 10 link="/en/docs/http/ngx_http_hls_module.html"
11 lang="en" 11 lang="en"
12 rev="6"> 12 rev="7">
13 13
14 <section id="summary"> 14 <section id="summary">
15 15
16 <para> 16 <para>
17 The <literal>ngx_http_hls_module</literal> module provides HTTP Live Streaming 17 The <literal>ngx_http_hls_module</literal> module provides HTTP Live Streaming
195 } 195 }
196 196
197 server { 197 server {
198 ... 198 ...
199 199
200 location /hls { 200 location /hls/ {
201 hls; 201 hls;
202 hls_forward_args on; 202 hls_forward_args on;
203 203
204 alias /var/videos; 204 alias /var/videos/;
205 205
206 secure_link $arg_md5,$arg_expires; 206 secure_link $arg_md5,$arg_expires;
207 secure_link_md5 "$secure_link_expires$hls_uri$remote_addr secret"; 207 secure_link_md5 "$secure_link_expires$hls_uri$remote_addr secret";
208 208
209 if ($secure_link = "") { 209 if ($secure_link = "") {