nginx-mod-rtmp/test/nginx.conf
Roman Arutyunyan e060e717f3 updated tests
2012-04-17 15:12:45 +04:00

74 lines
1.1 KiB
Nginx Configuration File

#user nobody;
worker_processes 1;
error_log logs/error.log debug;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
rtmp {
server {
listen 1935;
chunk_size 128;
max_buf 1000000;
publish_time_fix off;
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 /publish {
return 201;
}
location /play {
return 202;
}
location /record_done {
return 203;
}
location / {
root /home/rarutyunyan/nginx-rtmp-module/test/www;
}
}
}