nginx-rtmp-module icon indicating copy to clipboard operation
nginx-rtmp-module copied to clipboard

add forward_auth to redirect parameters from source to target with push

Open younes200 opened this issue 3 years ago • 0 comments

Add forward_auth to allow push stream with attached authentification.

Example :

worker_processes auto;
rtmp_auto_push on;
rtmp_auto_push_reconnect 1s;
events {}
rtmp {
    server {
        listen 1935;
        listen [::]:1935 ipv6only=on;
        chunk_size 4096;

        application live {
            live on;
            record off;
            push rtmp://127.0.0.1:19350/live;
            forward_auth on;
        }
        
    }
}

Related issue #920

younes200 avatar Jan 11 '22 16:01 younes200