Either self-hosted or cloud, I assume many of you keep a server around for personal things. And I’m curious about the cool stuff you’ve got running on your personal servers.

What services do you host? Any unique stuff? Do you interact with it through ssh, termux, web server?

  • Dyskolos@lemmy.zip
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    Multiple hosts. Win2024/hyperv and proxmox

    • domain/dns/dhcp/ncp 2x
    • pihole
    • iobroker (smarthome)
    • sonarr/radarr/orowlarr
    • emby
    • sabnzbd
    • vpn-vm for torrent/soulseek
    • searxng
    • dav for calendar
    • caddy (for emby/dav from outside)
    • firefly (banking)

    And some minor, less important ones.

    All backup to a central server, which does a daily backup of the backup onto another nas. In case of emergency,just grab nas.

  • tamagotchicowboy [he/him]@hexbear.net
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 months ago

    Self hosted retro private EQemu, I also use the server for Jellyfin, just for music.

    I used to use it to control my window AC from work too, but sadly the smart plug I use for that died over the winter, was nice to pair with those tuya-alternative through http since my cheapo phone needs to save all the storage it can. Its on a very old rig, so I’m always impressed that it still works.

  • Onno (VK6FLAB)@lemmy.radio
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    I use Docker and (currently) VMware and host whatever I need for as long (or short) as I need it.

    This allows me to keep everything separate and isolated and prevents incompatible stuff interacting with each other. In addition, after I’m done with a test, I can dispose of the experiment without needing to track down spurious files or impacting another project.

    I also use this to run desktop software by only giving a container access to the specific files I want it to access.

    I’m in the process of moving this to AWS, so I have less hardware in my office whilst gaining more flexibility and accessibility from alternative locations.

    The ultimate aim is a minimal laptop with a terminal and a browser to access what I need from wherever I am.

    One side effect of this will be the opportunity to make some of my stuff public if I want to without needing to start from scratch, just updating permissions will achieve that.

    One step at a time :)

  • Veraxis@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    2 months ago

    Two old HP thin client PCs configured as 4TB SFTP file servers using vsftpd on Debian. Each one uses software RAID 1 with both an NVMe and SATA SSD internally, and are in two separate locations with a cron job which syncs one to the other every 24 hours.

    People who actually know what they are doing will probably find this silly, but I had fun and learned a lot setting it up.

    • umbrella@lemmy.ml
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      2 months ago

      tell me about the cron thing. im thinking of doing just that on mine for backup.

      are you scping them together?

      • Veraxis@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        edit-2
        2 months ago

        I am using lftp and mirror. One server functions as the “main” server, which mirrors the backup server to itself once per day at a specific time (they both run 24/7 so I set it to run very early in the morning when it is unlikely to be accessed).

        In my crontab I have:

        # # * * * /usr/bin/lftp -e "mirror -eRv [folder path on main server] [folder path on backup server]; quit;" sftp://[user]@[address of backup server]:[port number]

  • atocci@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    2 months ago

    Just Jellyfin and modded Minecraft right now. Nothing super interesting, but great fun.

    I’m using SSH to interact with the Minecraft server in tmux, and the web interface for Jellyfin.

  • vithigar@lemmy.ca
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    Headless server accessed via SSH. Hosting Jellyfin, FoundryVTT, a Discord bot that I just mess around with, and also use it to run an IRC client inside screen.

  • chevy9294@monero.town
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    2 months ago

    On my Raspberry Pi 4 4gb with encrypted sd is:

    • pihole
    • wireguard server
    • vaultwarden
    • cloudflare ddns
    • nginx proxy manager
    • my website
    • ntfy server
    • findmydevice server
    • watchtower

    Pi is overkill for this kind of job. Load average is only 0.7% and ram usage is only 400M

    • Vik@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 months ago

      can you tell us how you got this running with an encrypted SD card?

      • chevy9294@monero.town
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 months ago

        That was really hard to do. I created a note for myself and I will also publish it on my website. You can also decrypt the sd using fido2 hardware key (I have a nitrokey). If you don’t need that just skip steps that are for fido2.

        The note:

        Download the image.

        Format SD card to new DOS table:

        • Boot: 512M 0c W95 FAT32 (LBA)
        • Root: 83 Linux

        As root:

        xz -d 2023-12-11-raspios-bookworm-arm64-lite.img.xz
        losetup -fP 2023-12-11-raspios-bookworm-arm64-lite.img
        dd if=/dev/loop0p1 of=/dev/mmcblk0p1 bs=1M
        cryptsetup luksFormat --type=luks2 --cipher=xchacha20,aes-adiantum-plain64 /dev/mmcblk0p2
        systemd-cryptenroll --fido2-device=auto /dev/mmcblk0p2
        cryptsetup open /dev/mmcblk0p2 root
        dd if=/dev/loop0p2 of=/dev/mapper/root bs=1M
        e2fsck -f /dev/mapper/root
        resize2fs -f /dev/mapper/root
        mount /dev/mapper/root /mnt
        mount /dev/mmcblk0p1 /mnt/boot/firmware
        arch-chroot /mnt
        

        In chroot:

        apt update && apt full-upgrade -y && apt autoremove -y && apt install cryptsetup-initramfs fido2-tools jq debhelper git vim -y
        git clone https://github.com/bertogg/fido2luks && cd fido2luks
        fakeroot debian/rules binary && sudo apt install ../fido2luks*.deb
        cd .. && rm -rf fido2luks*
        

        Edit /etc/crypttab:

        root            /dev/mmcblk0p2          none            luks,keyscript=/lib/fido2luks/keyscript.sh
        

        Edit /etc/fstab:

        /dev/mmcblk0p1    /boot/firmware  vfat    defaults          0       2
        /dev/mapper/root  /               ext4    defaults,noatime  0       1
        

        Change root to /dev/mapper/root and add cryptdevice=/dev/mmcblk0p2:root to /boot/firmware/cmdline.txt.

        PATH="$PATH:/sbin"
        update-initramfs -u
        

        Exit chroot and finish!

        umount -R /mnt
        
  • digdilem@lemmy.ml
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 months ago
    • HomeAssistant and a bunch of scripts and helpers.
    • A number of websites, some that I agreed to host for someone who was dying.
    • Jellyfin and a bunch of media
    • A lot of docker containers (Adguard, *arrs)
    • Zoneminder
    • Some routing and failover to provide this between main main server and a much smaller secondary (keepalived, haproxy, some of the docker containers)
    • Some development environments for my own stuff.
    • A personal diary that I wrote and keep track of personal stats for 15 years
    • Backup server for a couple of laptops and a desktop (plus automated backup archiving)

    Main server is a ML110 G9 running Debian. 48G/ram. 256 ssd x2 in raid1 as root. 4tb backup drive. 4tb cctv drive. 4x4tb raid 10 data drive. (Separating cctv and backup to separate drives lowers overall iowait a lot). 2nd server is a baby thinkcentre. 2gb ram, 1x 128gb ssd.

  • BlueÆther@no.lastname.nz
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    ATM I have the following running:

    • Caddy
    • NextCloud
    • Webpress
    • Plex
    • Actual Budget
    • Portainer
    • Vaultwarden
    • Grafana
    • Stable Diffusion
    • QBT
    • *arr stack
    • 4 Debian instances with differing bits and bobs on
    • MIT Scratch
    • Neon KDE (Drives lounge TV)
    • Win10 and 11 vms
    • TrueNAS
    • OpnSense
    • Homepage
    • Navidrome
    • SoulSeek
      • BlueÆther@no.lastname.nz
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        it’s an i5 13xxx with 64GB ram and a HBA passed through to TrueNAS with 7 disks on it and a second network card passed through to OpnSense for WAN/LAN

        All the above runs in Proxmox and has a bit of room for expansion still ;) This was a 50th to myself to replace an IBM M4 space heater

      • Valmond@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        Because I had lots of problems with my lemmy.mindoki.com server, so I shamefully uses an accunt on lemmy.world.

        Just wiped the server a coupla of days ago (snif), so if everything works out well this time you’ll see valmond from mindoki the next time :-)

  • Mikina@programming.dev
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago
    • OrangePi with HomeAssistant and PiHole.
    • Old gaming PC turned 24/7 server with Jellyfin, V-Rising server
    • Hetzner cloud with Matrix server for Messenger and Discord bridging.
    • Synology NAS for SMB and sharing stuff with others through Synology Drive, which also serves as a seedbox for Redacted.ch, with Headphones and Transmission.
  • thayer@lemmy.ca
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 months ago

    NUC 8i5, 32GB, 500GB NVMe (host), 8TB SSD (data), Akasa Turing fanless case, running Proxmox:

    • samba
    • syncthing
    • pihole
    • radicale
    • jellyfin
    • minidnla

    I also have a Pi 4 running LibreElec for Kodi on the home theater. Nothing fancy yet and it more than meets our current needs. Most maintenance done over SSH.

    Would like to eventually get a proper web and email server going (yes, I know).