现在,随着越来越多人使用Oneindex等列表程序,Onedrive直链访问速度越来越慢,在晚高峰时期,大陆的访问速度甚至不到10Kb/s,非常影响使用体验,更别提在线看视频了。
本文就是通过反向代理,让Onedrive流量通过服务器中转,解决Onedrive在线播放视频慢的问题。文章源自国外主机测评-https://www.zjcp.org/13855.html
具体办法
本文以BT面板为例,需要使用两个域名文章源自国外主机测评-https://www.zjcp.org/13855.html
首先我们需要一个域名来反向代理Onedrive,在宝塔面板创建站点后,在SSL选项卡部署SSL证书。
文章源自国外主机测评-https://www.zjcp.org/13855.html
TIM截图20190724080451.png文章源自国外主机测评-https://www.zjcp.org/13855.html
接下来进入反向代理选项卡→添加反向代理,填入目标地址(https://xxx-my.sharepoint.com
),可以在Oneindex解析的直链中获取。
文章源自国外主机测评-https://www.zjcp.org/13855.html
TIM截图20190724080721.png
保存后,再点击配置文件
在proxy_set_header REMOTE-HOST $remote_addr
后添加文章源自国外主机测评-https://www.zjcp.org/13855.html
proxy_buffering off;
proxy_cache off;
proxy_set_header X-Forwarded-Proto $scheme;
如果是非宝塔面板,直接将以下字段加入配置中,注意替换xxx
。文章源自国外主机测评-https://www.zjcp.org/13855.html
location /
{
expires 12h;
if ($request_uri ~* "(php|jsp|cgi|asp|aspx)")
{
expires 0;
}
proxy_pass https://94ish-my.sharepoint.com;
proxy_set_header Host 94ish-my.sharepoint.com;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_buffering off;
proxy_cache off;
proxy_set_header X-Forwarded-Proto $scheme;
add_header X-Cache $upstream_cache_status;
}
接下来我们返回编辑Oneindex站点的Nginx配置文章源自国外主机测评-https://www.zjcp.org/13855.html
sub_filter "xxx-my.sharepoint.com" "填入反代Onedrive的域名";
sub_filter_once off;
将以上字段加入配置中保存即可。文章源自国外主机测评-https://www.zjcp.org/13855.html
这时我们在线视频时即可使用服务器中转流量达到加速效果。文章源自国外主机测评-https://www.zjcp.org/13855.html
总结
这个办法还是非常简单的,适用于现所有的Onedrive列表程序,不过考虑到公开访问,服务器还是推荐用无限流量的。同时如果服务器网络不好,也是无法达到加速的效果的。目前在不修改源程序的情况下,只能加速在线访问的文件,对于需要全局加速的,我还是更加推荐Sharelist
。