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?

  • @Veraxis
    link
    English
    13
    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.

    • @Crackhappy
      link
      English
      52 months ago

      If it works reliably who cares?

    • @[email protected]
      link
      fedilink
      2
      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
        link
        English
        2
        edit-2
        1 month 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]

          • @Veraxis
            link
            English
            21 month ago

            No problem! Glad I could be of help, and best of luck on your project.