玩客云相关
1.刷机教程
https://powersee.github.io/2021/02/wankeyun-2/
扩容根节点分区
使用cfdisk扩容现有分区:https://blog.csdn.net/zetion_3/article/details/115062773
aria2 nginx RPC代理
- aria2 相关配置
https://www.jianshu.com/p/6adf79d29add - 代理配置
https://tech.he-sb.top/posts/use-https-on-aria2/
location ^~ /jsonrpc {
proxy_http_version 1.1;
add_header Front-End-Https on;
proxy_set_header Connection "";
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:6800/jsonrpc;
proxy_pass_header X-Transmission-Session-Id;
}