• 0 Posts
  • 18 Comments
Joined 8 days ago
cake
Cake day: March 5th, 2025

help-circle


  • These are some concerns I’ve had too, but I think there’s progress being made.

    Currently, it seems for the account migration/duplication is a self hosted effort but something that I’ve been looking into making a site for.

    As for the long term viability of these instances, I would say it’s pretty rare that a bigger instance run by good admins go down frequently. The costs aren’t usually that high and can be managed fairly easily. From what I’ve seen, these instances are usually donation-based “monetization” so if no one donates its on the instance owner to eat the costs. In theory, one could make some sort of membership based instance, but I haven’t seen anything like that. I’ve seen discussions that if an instance was to start running ads that users would leave immediately… and that’s certainly their choice. It just makes it difficult if an instance is growing but does not have any contribution from the community to run the instance.

    However, when the instance that people have registered on goes down, yes, they lose their progress, comments, history, etc… there is no way to transfer that to another instance.

    Currently, there is only a way to move subscriptions, that I’m aware of.

    As for the list of instances… that should be “unique” per instance, because that is the list of instances that are federating with the instance you’re looking at. So usually it’ll show the federating and blocking instances. So as long as at least one account is subscribing to those instances from your instance, it’ll show up there. Larger instances don’t necessarily need to seed their federation, but it’s common for new instances to seed federation and to start getting material out to the rest of the Fediverse.






  • You are looking for a disaster recovery plan. I believe you are going down the right path, but it’s something that will take time.

    I backup important files to my local NAS or directly store them on the local NAS.

    This NAS then backs up to an off site cloud backup provider BackBlaze B2 storage.

    Finally, I have a virtual machine that has all the same directories mounted and backs up to a different cloud provider.

    It’s not quite 3-2-1… but it works.

    I only backup important files. I do not do full system backups for my windows clients. I do technically backup full Linux vms from within Proxmox to my NAS…but that’s because I’m lazy and didn’t write a backup script to back up specific files and such. The idea of being able to pull a full system image quickly from a cloud provider will bite you in the ass.

    In theory, when backing up containers, you want to backup the configurations, data, and the databases… but you shouldn’t worry about backing up the container image. That can usually be pulled when necessary. I don’t store any of my docker container data in volumes… I use the folder mapping from host to directory in docker container… so I can just backup directories on the host instead of trying to figure out the best way to backup a randomly named docker volume. This way I know what I’m backing up for sure.

    Any questions, just ask!



  • I’ll pitch in here… so website dns (porkbun) is configured to point to your home in, great!

    2 things need to happen.

    1. Your router needs to expose ports 80 and/or 443 for HTTP and HTTPS access. If you are only doing HTTPS then 80 isn’t really necessary. These ports need forwarded to a reverse proxy, such as NGINX or Apache.
    2. You need to have a reverse proxy setup that can translate the domain name that is being sent to a local IP address:port. You should be able to find some relatively simple/easy reverse proxy configuration generators online to help you get that setup. You’ll want to setup SSL certificates while you’re at this too. Look up “nginx certbot lets encrypt” and that should get you pointed in the right direction.

    Once those are done, in theory, you should be able to access your website outside of your home network using your domain name.


  • I’ve just started to delve into Wazuh… but I’m super new to vulnerability management on a home lab level. I don’t do it for work so 🤷🏼‍♂️

    Anyways, best suggestion is to keep all your containers, vms, and hosts updated best you can to remediate vulnerabilities that are discovered by others.

    Otherwise, Wazuh is a good place to start, but there’s a learning curve for sure.