this post was submitted on 24 Jul 2024
186 points (99.5% liked)

Games

31774 readers
1694 users here now

Welcome to the largest gaming community on Lemmy! Discussion for all kinds of games. Video games, tabletop games, card games etc.

Weekly Threads:

What Are You Playing?

The Weekly Discussion Topic

Rules:

  1. Submissions have to be related to games

  2. No bigotry or harassment, be civil

  3. No excessive self-promotion

  4. Stay on-topic; no memes, funny videos, giveaways, reposts, or low-effort posts

  5. Mark Spoilers and NSFW

  6. No linking to piracy

More information about the community rules can be found here.

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 1 month ago (1 children)

I was already planning on moving over to Linux, and can get around enough. This is amazing info, as I've moved more into self hosting and didn't even realize that was an option. Definitely something to look into once I find a permanent residence. Thank you!

[–] Hexarei 1 points 1 month ago (1 children)

You're welcome, feel free to ask any questions once you get there

[–] [email protected] 1 points 1 month ago (1 children)

You are awesome friend! It won't be anytime soon. We lost our place to a fire and are getting by in motels for now. Everyone survived and a lot more than expected was salvageable, so we keep moving forward.

At some point I'll throw my old parts together into a Linux server. I was just hosting everything on my main rig, which obviously is not ideal. I've seen a bit of discussion on both sides of docker, do you have any input one way or the other?

[–] Hexarei 2 points 1 month ago (1 children)

Ah, I've generally run my VPN primary exit node in a public cloud infrastructure host like Digital Ocean or AWS in order to provide a separate public IP from the rest of my stuff, and not give out my home IP to public Wi-Fi and such.

I like docker, as long as you use a good orchestration tool it's a good way to declaratively define what should be running on your server, using a compose file or similar. There are a lot of benefits to the overhead of learning it, including running multiple instances of the same service on one machine without conflicts, and the ability to force your hosted apps to store all of their data in nice neat packages you can easily back up with something like Duplicity or Volumerize.

I actually run my containers on a small kubernetes cluster using VMs running k3s atop Proxmox, with persistence handled by a hyperconverged ceph cluster. All probably very overkill but it's fun to play with and performs incredibly. Most folks can get away with a single server running containers with simple docker compose.

[–] [email protected] 1 points 1 month ago

Thank you so much for the info. I love learning