fixes, improve host-info-update
[distro-setup] / filesystem / etc / nginx / conf.d / rtmp.conf
1 # based on https://opensource.com/article/19/1/basic-live-video-streaming-server#comments
2 # and https://github.com/arut/nginx-rtmp-module/wiki/Directives
3 rtmp {
4 allow publish 127.0.0.1;
5 deny publish all;
6 server {
7 listen 1935;
8 application live {
9 live on;
10 record off;
11 }
12 }
13 }