登录 注册
当前位置:主页 > 资源下载 > 48 > 在Windows环境下,基于Nginx和RTMP的流媒体服务器

在Windows环境下,基于Nginx和RTMP的流媒体服务器

  • 更新:2024-06-21 14:11:32
  • 大小:2.71MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:虚拟化 - 服务器应用
  • 格式:RAR

资源介绍

server { listen 80; server_name localhost; location /stat { rtmp_stat all; rtmp_stat_stylesheet stat.xsl; } location /stat.xsl { root nginx-rtmp-module-master/; } location /control { rtmp_control all; } rtmp { server { listen 1935; chunk_size 4000; application live { live on; } } } 在conf配置文件中配置