Hi,
I have setup a video streaming server in Ubuntu 22.04 with Nginx-RTMP module and it was successfully working. Now a days we need to stream the rtmps stream. How it configure tin nginx configurations.
below is my "nginx.conf" file configuration.
rtmp {
server {
listen 1935;
chunk_size 4096;
notify_method get;
application live {
live on;
allow publish all;
allow play all;
}
}
}