ubuntu13搭建rtmp流媒体服务器

来源:互联网 发布:淘宝宝贝被管控怎么办 编辑:程序博客网 时间:2024/05/28 09:32

配置文件:

#user  nobody;

user  ftpweb ftpweb;
worker_processes  30;


error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;


#pid        logs/nginx.pid;
#error_log  /usr/local/nginx/logs/error.log  crit;
pid        /usr/local/nginx/logs/nginx.pid;


events {
    use epoll;
    worker_connections  65535;
}


rtmp {
    server {
    listen 8082;
    application vod {
            play /mnt/datadrive/appServer/streaming/;
       }
   }

}


参考:

http://blog.csdn.net/defonds/article/details/17591195

http://bbs.csdn.net/topics/390573646

0 0
原创粉丝点击