nginx-mod-rtmp/test/nginx.conf
2012-03-21 19:08:59 +04:00

54 lines
683 B
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;
# wait_key_frame on;
chunk_size 128;
max_buf 1000000;
#allow play all;
allow publish 127.0.0.1;
deny publish all;
}
}
http {
server {
# testing framework
# based on flowplayer (http://flowplayer.org)
listen 8080;
location / {
# deny 192.168.33.33;
root /home/rarutyunyan/nginx-rtmp-module/test/www;
}
}
}