安装完nginx和nginx-rtmp-module模块
在nginx.conf文件最后添加
rtmp {
server {
listen 1935; #监听的端口
chunk_size 4000;
application hls { #rtmp推流请求路径
live on;
hls on;
hls_path /home/hls;
hls_fragment 5s;
}
}
}
重新启动nginx,没有报错。
输入命令netstat -ntlp
发现1935端口并没有被监听
。
解决:配置完nginx.conf后,重启服务器,再开启nginx