nginx rtmp

This commit is contained in:
sebseb7
2020-10-06 18:44:29 +02:00
parent b69b51fc7c
commit 86bb0cc755
5 changed files with 69 additions and 0 deletions

26
nginx.conf Normal file
View File

@@ -0,0 +1,26 @@
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
rtmp {
access_log off;
server {
listen 1935;
application feed {
live on;
meta copy;
drop_idle_publisher 4s;
}
}
}