1. nginx 反向代理视频进度条无法拖动
原因是 反代时默认nginx是返回200,需要加入这几个参数就好了!
proxy_set_header Range $http_range;
proxy_set_header If-Range $http_if_range;
proxy_no_cache $http_range $http_if_range;
原因是 反代时默认nginx是返回200,需要加入这几个参数就好了!
proxy_set_header Range $http_range;
proxy_set_header If-Range $http_if_range;
proxy_no_cache $http_range $http_if_range;