this post was submitted on 01 Aug 2025
35 points (94.9% liked)

Asklemmy

49746 readers
473 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 6 years ago
MODERATORS
 

How in terms of "how did you do it" i.e. a guide a wiki etc. How to you maintain it? How do you provide security and how do you maintain it? Do you host on bare metal at home? Do you use a cloud service? If the former, how do you connect to it when you aren't at home?

I realize that's a lot to ask, but I have some down time and want to hear everyone's full viewpoints

you are viewing a single comment's thread
view the rest of the comments

I self host a lot of different things, some public (like my Nextcloud instance) and others are only on my home network (like paperless). Basically, if I know I'm going to allow non-techy folks to access the service I'll consider making it public, otherwise it stays on my VPN.

Setting them up was mostly just downloading their docker-compose.yaml adjusting a few variables to suit my needs and then running docker compose up -d to bring them online.

For the most part, maintaining the service consists of making backups and just pulling the new containers when it's time to update (docker compose pull && docker compose up -d).

As for hardware, mostly it's just old desktops I've repurposed into servers. I don't generally use VPSs unless it's something I really don't want to go down if my home internet goes out. Right now, nothing I have is running on a VPS, but the last service would have been my Matrix server. When I couldn't get any of my friends and family onboard with it I shut it down and started using a public Matrix server instead.