Let’s say I decided that instead of blogging, I wanted to host my own Lemmy instance that contained a maximum of one (1) user– me, but allowing other users to subscribe.

To show what I’m talking about, look at how kaidomac uses Reddit as his own personal microblog, which people subscribe to.

What is the cheapest way to do this?

My mental model of Lemmy is that if I were to do this, the instance would still be caching information from other instances. This would– at least in my mine– add up in costs.

I’m a software engineer, so feel free to use technical jargon.

  • 𝘋𝘪𝘳𝘬
    link
    fedilink
    214 hours ago

    Selfhosting is basically free. You already have an unmetered Internet connection, and sourcing some hardware to run Lemmy would also be super easy.

    The “problem” is that setting Lemmy up is quite annoying and complex and involves multiple docker containers and volumes and networks. There are various installation scripts but it is still a complete mess.

    It would also result in a metric shit-ton of traffic and data storage.

    • @[email protected]
      link
      fedilink
      93 hours ago

      I’m not sure how much you’re willing to write off as “basically free”, but electricity does add up for running your own server.

  • @[email protected]
    link
    fedilink
    English
    75 hours ago

    It’s very cheap. Hostinger’s cheapest tier ($17/mo) can easily handle a single-user Lemmy instance. You’ll have to once in a blue moon worry about the image storage growing without limit, but it’s a solvable problem.

      • db0
        link
        fedilink
        1
        edit-2
        1 hour ago

        For that kind of money you get so much much more at a budget host like contabo.

      • @[email protected]
        link
        fedilink
        English
        44 hours ago

        I think you would need more RAM than that. Between Rust and Node, I probably wouldn’t try to make do with less than 2 GB at a bare minimum, and 4 might be better.

      • Scrubbles
        link
        fedilink
        English
        24 hours ago

        I run mine on digital ocean and it’s great. Mine is slightly more powerful, but you can always start small and upgrade. It’s much harder to downgrade

  • @MocOP
    link
    35 hours ago

    Alternative question– I use Zola and Github Pages to host my website. Does ActivityPub have support for blogging? Like let’s say people on Lemmy or Mastodon could subscribe to my blog through ActivityPub?

    From what I can tell Zola does not have anything like this (tried searching GH issues), but I just want to know if it’s technically feasible. I can write Rust, so I could have a crack at it myself if it’s not too cost/effort prohibitive.

    • @[email protected]
      link
      fedilink
      12 hours ago

      ActivityPub, as the name implies, is just a protocol for publishing one’s activities. Those activities can be blog posts too (just like they can be Lemmy comments, which is what I’m doing now).

      Lemmy only allows subscribing to communities, not arbitrary accounts, but on Mastodon, people can subscribe to anything.

    • @[email protected]
      link
      fedilink
      English
      33 hours ago

      Lemmy claims to be able to support any Bootstrap 5 theme as a drop-in Lemmy theme, and it’s surprisingly close to being true. If you go to ponder.cat right now, you’ll see one, based on Sandstone, that I’ve been fooling around with, because the provided Lemmy themes are mostly awful to me.

      You could run one backend instance, have a main frontend to it on lemmy.whatever.com, and have a second frontend on whatever.com, with the theme set to a minimally modified version of Clean Blog or something, stripping out all the UI stuff and leaving only a blog. That would give you an RSS feed, a blog, a community that Lemmy people could follow, and a Fediverse actor that Mastodon people could follow, all in one place with all the comments unified. If you want to set the theme up that way, I can give you pointers, since I’ve just now been working on this for my instance.

    • 𝘋𝘪𝘳𝘬
      link
      fedilink
      24 hours ago

      Does ActivityPub have support for blogging?

      From what I researched some time ago: There are/were some federated blogging systems out there but they’re all stuck in the pre-Docker era installation-wise and technology-wise (i.e. just outdated).

      But in the end it makes no sense in my opinion. Blogs nowadays are just publishing and less networking/interaction.

      A simple file loader and markdown parser could be enough. I set up my page based on Apache directory listing, a custom Action to parse markdown files, and some fancy CSS. There is figuratively nothing that runs my page, except a web server and a markdown parser.