• 4 Posts
  • 78 Comments
Joined 1 year ago
cake
Cake day: June 11th, 2024

help-circle







  • Isn’t my dad the hosting provider? I ordered the hardware, he connected it to his switch and his electricity and pressed the button to start it the first time. From there on I logged in to his VPN and set up the server like I would at Hetzner.

    But you’re right it doesn’t really make a difference. I feel the only difference it makes for me where I post my questions on Lemmy if it is in a !selfhosting community or a !linux community.

    From a feeling perspective, even if I use Hetzners cloud, I feel I self host my single user PieFed instance (and matrix, my other websites, mastodon, etc.) because I have to preform basically the same steps as for things I’m really hosting at home like open-webui, immich, peertube.




  • I did that first but that always required much more resources than doing it yourself because every docker starts it’s own database and it’s own nginx/apache server in addition to the software itself.

    Now I have just one Postgresql database instance running with many users and databases on it. Also just one Nginx which does all the virtual host stuff in one central place. And both the things which I install with apt and manually are set up similarly.

    I use one docker setup for firefox-sync but only because doing it manually is not documented and even the docker way I had to research for quite some time.





  • Nextcloud it just too heavy I totally agree, and everything feels slow and sluggish.

    For just files I use Syncthing and couldn’t be happier, it just works in the background without a central server just syncs the files between phones, PCs and laptops by itself. I set it up like 5 years ago when I had enough of Nextcloud and to be honest most of the time I forget that I have it, but I use it every day to sync my password database for KeePassXC, my music, my private and work documents between all my devices.




  • Most of the time the VPS provider offers some backup solution. It’s not only about your configuration files which can easily be recreated, but about all the user data like pictures databases, etc. Which once lost can’t be recovered.

    Best practice is a 3-2-1 backup: https://www.backblaze.com/blog/the-3-2-1-backup-strategy/

    But you could back up your stuff on your laptop if you want, it’s not such a bad idea actually. For that you trigger the backup script from your laptop, you can do it automatically there too. This makes sure that the laptop is on while you’re doing the backup.

    The easiest way is a crown job and a bash file which runs a couple of rsync commands to get specific files and directories from the server via ssh.

    A more involved way would be a backup system like restic, which does a lot of things for you but is a bit more involved to set up.