• 5 Posts
  • 16 Comments
Joined 1 year ago
cake
Cake day: June 4th, 2023

help-circle
  • The requirement of managing an LDAP or AD directory service just to get some auth for NFS is a dealbreaker for like 99% of people. It’s such a dumb protocol for the average user and was designed with only huge corporate clients in mind.

    Just give people a simple password auth or let them exchange private/public keys between the devices that need to connect!








  • It’s a script that you put in place of the raw url of a bookmark in your browser. For these ones here you’d make a new bookmark and past in the script there (adjusting the fediverse url for your home community so it can correctly redirect you) and it runs some (usually) javascript that manipulates the page your on in a way to direct you to the asked for location.

    Its a much more lightweight way to do a single thing if that’s all you’re needing and since you can see the code you can also be sure, unlike a chrome plugin, that it’s not doing other weird stuff.









  • I run everything on local hardware. 1 Synology NAS, one old desktop (Ryzen 5 5600X) which has been repurposed to a Proxmox node, and a second Proxmox node (i5-6500T). I use Open Media Vault with Docker as my primary host, and I have a CoreOS secondary host that I have a couple of Podman containers on. I’m planning moving stuff to Podman eventually, but I was mostly focused on moving the bare metal OMV host to a vm recently. I have a media share on my NAS that some containers rely on. I also have a NFS share on it that I use for larger data pools (like nextcloud, download folders for torrents).

    • Everything is: Bare metal Proxmox -> VMs -> Containers. No services running directly
    • I use Docker (mostly) and a couple of podman containers, moving to podman going forward
    • Only orchestration is docker-compose (for docker) and systemd (for podman)
    • No central log server, haven’t needed one




  • Also, if you want to actually learn, I would strongly recommend against using Docker containers for everything. Besides being stuck with what the developers prefer, all the work of installing things is already done.

    I really disagree on this point. You should use docker or podman (preferably Podman) to containerize your applications on your server to keep them ephemeral and separated from the host OS wherever possible. This improves security, makes setups reproducible, and eases backup and restore procedure. If you want to build from source do so with a containerfile/docker file to keep your build environment fresh and clean.