Nginx系列(八)——数字媒体流

Sophisticated Media Streaming
MPEG-4和Flash格式媒体流
Serving MP4 and FLV
数字媒体流
http {
server {
...
location /videos/ {
mp4; #告诉Nginx,文件夹viedos里的文件是MP4格式
}
location ~ .flv$ {
flv;
}
}
}

原文地址:https://www.cnblogs.com/biaopei/p/12951358.html