Hi guys, do you know if there is a good RSS Feed service that can be self-hosted which also exposes a good front-end to read the subscribed news? Thanks in advance.

    • savbranOP
      link
      fedilink
      English
      34 months ago

      Just found it and tried on my home server, it works:

      version: '3.3'
      services:
        yarr:
          container_name: yarr
          image: maskalicz/yarr:latest
          ports:
          - 7070:7070
          volumes:
          - ./yarr-data:/data:rw
      

      Anyway, it just have one view mode with 3 panels and it’s not customizable. At the moment, the most featured and exstesible RSS Feed service seems to be FreshRSS as suggested in the thread by @specseaweed@lemmy.world.

      • @darkl1nk
        link
        English
        1
        edit-2
        4 months ago

        Sorry, but I mixed up apps. I have Yarr directly set up as a systemd service:

        [Unit] Description=Yarr Service After=network.target

        [Service] ExecStart=/home/darkl1nk/yarr/yarr -auth-file=/home/darkl1nk/yarr/auth.file WorkingDirectory=/home/dark

        I downloaded the precompiled package (https://github.com/nkanaev/yarr/releases/download/v2.4/yarr-v2.4-linux64.zip) and placed it at my home directory. Then created a site for nginx to map my subdomain to the local port 7070.