Oh technomages of c/selfhosted, I come seeking your help once more because anywhere I look there’s people trying to sell me on their service, something-something PODCASTS, or RSS for windows and all that, my brain cannot anymore.

I’ve got a blog I’m serving with nginx, and I would like to implement some sort of RSS feed. I’m pretty much new to the whole thing, but it was recommended to me. I did a bit of research and now I know those are like xml files that you subscribe to.

So, I wanted to know: In your experience, what is the best way to go about this? Do I have to make them myself by hand and put them in an /rss/ directory in the root of my blog? How do people subscribe to them? Got any resources?

I wouldn’t mind writing them by hand actually, my whole website is hand-made, gluten free and organic. (maybe not the last one).

Thanks in advance <3

  • @486@lemmy.world
    link
    fedilink
    English
    5
    edit-2
    2 days ago

    How do people subscribe to them?

    Subscribing to an RSS feed really is nothing more than telling your RSS client about the URL to that RSS XML file. The RSS client then regularily checks the URL for changes.

    If your site is hand-made as you say, you would have to manually create and update the RSS file also. This is quite a nuisance, not only because it is XML, but also because every feed entry needs its own unique UUID, which you need to create. Perhaps you could create a script that does it for you. Static site generators are usually able to automatically create an RSS feed for you.

    • @KazuchijouNo@lemy.lolOP
      link
      fedilink
      English
      19 hours ago

      Can I do the UUID generation with the uuidgen command? Also, I’m learning python and bash, so perhaps I could do something with cron(? I guess what I need is some sort of template or examples so I can get started

      The whole point is learning cool stuff :D