环境
公网IPv4 RSShub docker运行在本机上,端口为52503 通过端口映射,内部52503端口被映射为公网IPv4的7777端口
nginx代理
设置两个反向代理服务器,一个是RSShub,另一个是负责向exhentai发送带cookie的post请求
RSShub的nginx配置
server {
listen 443 ssl;
server_name rsshub.example.com;
include /etc/nginx/snippets/ssl.conf; # snippets/ssl.conf下是实现ssl的代码片段
location / {
proxy_pass http://localhost:52503;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Accept-Encoding "";
sub_filter_once off;
sub_filter_types application/xml;
sub_filter "https://exhentai.org/" "https://exhentai.example.com:7777/";
}
将RSShub中返回的种子链接进行替换
https://exhentai.org/torrent/2896586/e3af77426f8a51200f2ad642313ee6e909f65fb6.torrent?p=7173425-0-1723112345-8gim865
替换为
https://exhentai.example.com:7777/torrent/2896586/e3af77426f8a51200f2ad642313ee6e909f65fb6.torrent?p=7173425-0-1723112345-8gim865
proxy_set_header Accept-Encoding "";
保证sub_filter模块的成功运行,不适用gzip对返回压缩
如果默认使用gzip压缩返回之后的xml文件,就会导致这里的种子链接替换失败
post with cookie服务器的nginx配置
server {
listen 443 ssl;
server_name exhentai.example.com;
include /etc/nginx/snippets/ssl.conf;
location / {
proxy_pass https://exhentai.org;
proxy_set_header Host exhentai.org;
proxy_ssl_server_name on;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Cookie "igneous=yourIgneous; ipb_member_id=yourIpb_member_id; ipb_pass_hash=yourIpb_pass_hash; sk=yourSk";
}
填入拥有exhentai权限的cookie
生成ehentai rss订阅链接
参考官方文档,也可以在本博客搜索rsshub部署
qbittorrent设置
在设置中开启RSS,输入ehentai rss订阅链接 大功告成
Related
https://docs.rsshub.app/zh/guide/ https://blog.xdsoar.net/manager_comic_and_doujinshi/