Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 709 Bytes

README.md

File metadata and controls

46 lines (37 loc) · 709 Bytes

🔗 RSSHub Lite

Crawl web pages to RSS feeds.

Guide

Layout

root@localhost:/root/rsshub-lite$ tree
.
├── data
│   └── config.json
└── docker-compose.yml

docker-compose.yml

version: '3.4'
services:
  miniflux:
    image: ghcr.io/naiba/rsshub-lite:latest
    ports:
      - "3000:3000"
    volumes:
        - ./data:/rsshub-lite/data

config.json

Checkout data/config.json.example

{
    "sources": [
        {
            "name": "登链社区最新文章",
            /* ... */
        }
    ],
    "username": "naiba", /* Enable HTTP-Basic-Auth for /feed/* if not empty */
    "password": "abian",
    "max_items": 25
}