网页转RSS工具有很多,feed43、Huginn、RSSHub、fetchrss等网站工具,这次介绍一个网页转RSS订阅的工具:RSS Proxy
搭建我们使用最方便的Docker来搭建就可以了

不需要js支持的,直接快速开启

docker pull damoeb/rss-proxy
docker run -d --restart=always -p 3000:3000 -it damoeb/rss-proxy

有的网页是js的,需要js支持

docker pull damoeb/rss-proxy:js
docker run -d --restart=always -p 3000:3000 -it damoeb/rss-proxy:js

但这种模式需要模拟登陆,比较耗内存,最好加上内存限制,比如2G

docker pull damoeb/rss-proxy:js
docker run -d --restart=always -p 3000:3000 -it --memory="2g" damoeb/rss-proxy:js

直接访问IP:3000使用,如果想通过域名访问可以使用宝塔等反代3000端口就可以了

参考来源:https://github.com/damoeb/rss-proxy

Last modification:May 20, 2023
If you think my article is useful to you, please feel free to appreciate