搭建RTSP服務器時nginx的nginx.conf文件配置

worker_processes 1;html

events {
worker_connections 1024;
}nginx


http {
include mime.types;
default_type application/octet-stream;app

sendfile on;
keepalive_timeout 65;ide

server {
listen 8080;
server_name localhost;url

location / {
root html;
index index.html index.htm;
}server

#rtmp stat
location /stat {
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
}
location /stat.xsl {
root /usr/local/Cellar/rtmp-nginx-module/1.1.7.10/share/rtmp-nginx-module;
}htm

location /control {
rtmp_control all;
}get

#HLS配置開始,這個配置爲了`客戶端`可以以http協議獲取HLS的拉流
location /hls {
# Serve HLS fragments
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
root html;
add_header Cache-Control no-cache;
}
#HLS配置結束io

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}event

}
include servers/*;
}

rtmp {
server {
listen 1935;
ping 30s;
notify_method get;

application myapp {
live on;
record off;
}

#增長對HLS支持開始 application hls { live on; hls on; hls_path /usr/local/var/www/hls; hls_fragment 5s; } #增長對HLS支持結束 }}

相關文章
相關標籤/搜索