nginx-mod-rtmp/test/nginx.conf
Roman Arutyunyan fa6d9fc84f README
2012-03-24 10:26:07 +04:00

60 lines
788 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;
chunk_size 128;
max_buf 1000000;
publish_time_fix off;
application helo {
live on;
record /tmp/av;
record_size 10000000;
#wait_key_frame on;
# publish only from localhost
#allow publish 127.0.0.1;
#deny publish all;
}
}
}
http {
server {
listen 8080;
location / {
root /home/rarutyunyan/nginx-rtmp-module/test/www;
}
}
}