From 784b53bc884e739448da08a0a339dd572ed87e6c Mon Sep 17 00:00:00 2001 From: marvinlehmann Date: Thu, 5 Nov 2020 02:36:34 +0100 Subject: [PATCH] Add 'nginx.conf' --- nginx.conf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 nginx.conf 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; + } + } +}