Hi Jess,
Yes you are assumption is correct . i mean Nginx only . Apology for posting the question in wrong subject line .
netstat -plnt |grep 1935 this command runs gave the below output.
tcp 0 0 0.0.0.0:1935 0.0.0.0:* LISTEN 36676/nginx
telnet $NGINX_HOST 1935
Trying $NGINX_HOST ...
Connected to $NGINX_HOST.
Escape character is '^]'.
Connection closed by foreign host.
the rtmp url which the livestream entry has in KMC is like.
rtmp://$NGINX_HOST:1935/kLive/?t=a81a4003(Note : i have commented the queryParams = {p}.{e}.{i} in broadcasting.ini file as with queryparam also the rtmp url was not working in adobe FLME)
we have done below scenarios to test with nginx and Wowza both:
1)wowza up,nginx down
rtmp://$NGINX_HOST:1935/kLive/?t=a81a4003
connects and live streams fine to wowza but kaltura player doesnt show livestream
2) nginx up
url in KMC: rtmp://$NGINX_HOST:1935/kLive/?t=a81a4003
when used below url in FLME
rtmp://$NGINX_HOST:1935/kLive/
connects ,live streaming starts in adobe FLME but kaltura player doesnt show livestream
how can we trim the extra query parameter 't' in rtmp url which gets generaeted while creating live entry in KMC.
Thanks for the quick reply.