Add 'nginx.conf'

This commit is contained in:
2020-11-05 02:36:34 +01:00
parent fd6b663159
commit 784b53bc88

16
nginx.conf Normal file
View File

@@ -0,0 +1,16 @@
worker_processes auto;
rtmp_auto_push on;
events {}
rtmp {
server {
listen 1935;
listen [::]:1935;
application live {
live on;
record off;
}
}
}