• 0 Posts
  • 5 Comments
Joined 3 years ago
cake
Cake day: June 15th, 2023

help-circle
  • un_ax@lemmy.sdf.orgtoSelfhosted@lemmy.worldNetbird is king.
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    16 days ago

    I don’t think so in your case. From their docs these features are only available for self hosted instances, so you’d have to host Traefik instead of Nginx and end up with a similar config as your current one.

    Netbird/Tailscale are at their heart private LAN that you control that routes over the internet. They have some features on top to make DNS/TLS/Services/Tunneling easier. OP is using a service to allow external access to a host on their LAN.

    If you wanted to hide your home IP you could either use something like Defelct or Cloudflare as a reverse proxy, or host your own reverse proxy on a cloud provider (either Nginx like you currently are, or Netbird’s reverse proxy UI) and proxy it back to your local server over something like Netbird/Tailscale.

    DDOS/Scraping protection would depend on the method you choose.



  • That works but there are times where a machine/service dies completely or hangs mid-process for a couple of days. You can account for a lot of those cases, but having a separate system that just looks for success rather than monitoring for failure works betters in my experience.

    Or if you just want notifications, ntfy is really nice and selfhostable.



  • Here are some features off the top of my head that some backups software might have that other don’t, or that you’ll want to consider when choosing or making a system:

    • Application aware backups: E.G. DB Backups without shutting down the database. Could also be hypervisor/container awareness.
    • Restore: The ability to automatically restore files, systems, possibly to a new location.
    • Application aware restore/browsing: Being able to pull individual files from a backup, or accounts from a directory system
    • Backup copy: Automatically copying the backup to multiple destinations, disk or S3.
    • Retention: Automatically keeping a set number of backups, often including a number of weekly or monthly historical long term copies.
    • Backup Diffs: Keeping backups in a way that you only store the data changed rather than a full copy.
    • Compression: Compressing the stored data
    • Immutability: Keeping backups in a way that allows a (usually cloud) storage provider to lock files for X amount of days to prevent malicious deletions
    • Encryption: Encrypting your backups if they’re kept on someone else’s infrastructure or a non-secured area
    • Verification: Checking that the backups are intact and not corrupt.
    • Control panel: A single place to view the progress and completeness of all backups
    • Alerts: Notifications for failed backups, or hooks for successful backups for healthchecks.
    • Virus scans: Making sure a backups is malware-free before restore.
    • Retries: Ability to retry backups or copies in case of temporary outages before sending alerts

    I’m not sure which of these exist in free software, my experience is mostly on enterprise software. A backups system can be as simple as a rsync/zip cron job or a full integrated system depending on what you need.