nginx-mod-rtmp/test/nginx.conf

47 lines
576 B
Nginx Configuration File
Raw Normal View History

2012-03-17 23:16:59 +01:00
#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;
# wait_key_frame on;
chunk_size 128;
max_buf 1000000;
2012-03-18 14:09:19 +01:00
2012-03-17 23:16:59 +01:00
}
}
http {
server {
# testing framework
# based on flowplayer (http://flowplayer.org)
listen 8080;
location / {
root /home/rarutyunyan/nginx-rtmp-module/test/www;
}
}
}