Hello my friends.
I have upgraded Kaltura to the 13.04 version… I added one machine to treat the VOD, so i just installed the NGINX as you advice on an template, includind changing the delivery profiles (HLS, HDS and HASH). In that case I pointted to my new machine:
URL Hostname
https://qld-vod.escolavirtual.pt/hls qld-vod.escolavirtual.pt
…qld-vod.escolavirtual.pt/hds qld-vod.escolavirtual.pt
…qld-vod.escolavirtual.pt/hash qld-vod.escolavirtual.pt
I have installed the NGINX on that machine… But when i started a video that comes with some duration, nothing happens, and the video dont play. On my nginx server I got the following message on logs:
172.16.254.91 - - [28/Apr/2018:18:19:55 +0100] “GET /hls/p/102/sp/10200/serveFlavor/entryId/0_6ghmfop1/v/12/flavorId/0_mdstjtso/name/a.mp4/index.m3u8 HTTP/1.1” 000 0 9.823 “https://qld-media.escolavirtual.pt/index.php/extwidget/preview/partner_id/102/uiconf_id/6709466/entry_id/0_6ghmfop1/embed/auto?&flashvars[streamerType]=auto” “Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.104 Safari/537.36” “-” - “-” “qld-vod.escolavirtual.pt” 13174 - - 582 “-” “-” “-” “-” “-” 1
It means that i received the request, but i cant handle it. Can anyone help? Could this be related to my nginx.conf file? Is this ok? Or the server of upstream kalapi should be the same qld-vod…?
http {
upstream kalapi {
server qld-media.escolavirtual.pt;
}
…
server {
listen 80;
server_name qld-vod.escolavirtual.pt;
include /etc/nginx/conf.d/live.conf;
include /etc/nginx/conf.d/kaltura.conf;
}
include /etc/nginx/conf.d/ssl.conf;
Thanks a lot in advanced.