first commit

This commit is contained in:
2020-09-19 21:46:46 +02:00
commit 0fdfb90970
5 changed files with 168 additions and 0 deletions

16
nginx_restream.conf Normal file
View File

@@ -0,0 +1,16 @@
worker_processes 1;
events {
worker_connections 1024;
}
rtmp {
server {
listen 1935;
chunk_size 8192;
application origin {
live on;
record off;
meta copy;
___PUSH_DIRECTIVES___
}
}
}