nginx-streamer/nginx_restream.conf
Torma Kristof 729c6c0235
All checks were successful
continuous-integration/drone/push Build is passing
daemon off in config
2020-09-19 22:40:18 +02:00

17 lines
288 B
Plaintext

daemon off;
worker_processes 1;
events {
worker_connections 1024;
}
rtmp {
server {
listen 1935;
chunk_size 8192;
application origin {
live on;
record off;
meta copy;
___PUSH_DIRECTIVES___
}
}
}