You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.2 KiB
66 lines
1.2 KiB
worker_processes 1;
|
|
|
|
error_log logs/error.log debug;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
rtmp {
|
|
server {
|
|
listen 1935;
|
|
|
|
application myapp {
|
|
live on;
|
|
|
|
#record keyframes;
|
|
#record_path /tmp;
|
|
#record_max_size 128K;
|
|
#record_interval 30s;
|
|
#record_suffix .this.is.flv;
|
|
|
|
#on_publish http://localhost:8080/publish;
|
|
#on_play http://localhost:8080/play;
|
|
#on_record_done http://localhost:8080/record_done;
|
|
}
|
|
}
|
|
}
|
|
|
|
http {
|
|
server {
|
|
listen 8080;
|
|
|
|
location /stat {
|
|
rtmp_stat all;
|
|
rtmp_stat_stylesheet stat.xsl;
|
|
}
|
|
|
|
location /stat.xsl {
|
|
root /path/to/nginx-rtmp-module/;
|
|
}
|
|
|
|
location /control {
|
|
rtmp_control all;
|
|
}
|
|
|
|
#location /publish {
|
|
# return 201;
|
|
#}
|
|
|
|
#location /play {
|
|
# return 202;
|
|
#}
|
|
|
|
#location /record_done {
|
|
# return 203;
|
|
#}
|
|
|
|
location /rtmp-publisher {
|
|
root /path/to/nginx-rtmp-module/test;
|
|
}
|
|
|
|
location / {
|
|
root /path/to/nginx-rtmp-module/test/www;
|
|
}
|
|
}
|
|
}
|
|
|