Crawl web pages to RSS feeds.
root@localhost:/root/rsshub-lite$ tree
.
├── data
│ └── config.json
└── docker-compose.yml
version: '3.4'
services:
miniflux:
image: ghcr.io/naiba/rsshub-lite:latest
ports:
- "3000:3000"
volumes:
- ./data:/rsshub-lite/data
Checkout data/config.json.example
{
"sources": [
{
"name": "登链社区最新文章",
/* ... */
}
],
"username": "naiba", /* Enable HTTP-Basic-Auth for /feed/* if not empty */
"password": "abian",
"max_items": 25
}