文件名称:win下基于nginx+rtmp流媒体服务器
文件大小:2.71MB
文件格式:RAR
更新时间:2021-01-23 03:54:44
nginx+rtmp
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配置文件中配置