在config.php配置json接口
缓存时间:官方资源建议三个小时,10800秒 切片资源理论上可以随便写久点
在config.php 第9行配置当前网站的域名
如果缓存资源需要让网站播放,需要配置跨域
宝塔
nginx:
在 网站->配置文件 中间任意部分添加
add_header Access-Control-Allow-Origin '*';
add_header Access-Control-Allow-Methods 'POST,PUT,GET,DELETE';
add_header Access-Control-Allow-Headers 'version, access-token, user-token, Accept, apiAuth, User-Agent, Keep-Alive, Origin, No-Cache, X-Requested-With, If-Modified-Since, Pragma, Last-Modified, Cache-Control, Expires, Content-Type, X-E4M-With';
apache:
在 网站->配置文件 中间任意部分添加
Header set Access-Control-Allow-Origin *
Header set Access-Control-Allow-Credentials true
Header set Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept"
注:
如果网站有多个端口,需要在对应端口代码中间添加,尤其是80和443端口
error目录内是记录不能直接缓存的加密m3u8
jxerror目录内记录json接口无法解析的链接
感谢您的来访,获取更多精彩文章请收藏本站。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容