nginx支持在线播放mp4

nginx支持在线播放mp4

1.安装nginx时加参数
–prefix=/opt/nginx –with-http_gzip_static_module –with-http_flv_module –with-http_mp4_module
2.匹配处理
location ~* .*.mp4$ {
mp4;
}
3.mime类型增加
video/mp4 mp4;

chrome就直接支持访问mp4的url直接播放了。