diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..b579a81 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,16 @@ +worker_processes auto; +rtmp_auto_push on; + +events {} + +rtmp { + server { + listen 1935; + listen [::]:1935; + + application live { + live on; + record off; + } + } +}