• 3 Posts
  • 170 Comments
Joined 2 years ago
cake
Cake day: June 24th, 2023

help-circle
  • We aim to introduce additional paid services (not paywalled features, as we will never implement paywalled features), which will help support the project and that enhance self-hosting, making it easier and more reliable. First among the many services already planned is an end-to-end encrypted, off-site backup and restore feature, built directly into Immich. This will enable a buddy backup feature as well.

    I love this.

    Free features, but offering actual useful services for self-hosters (encrypted cloud backup). Great business model for a project like this.





  • I made an 8 outlet box with relays connected to each outlet (might post a how to). That’s connected to a Pi via GPIO.

    The Pi runs PiKVM, but also has a service that:

    • Checks if the router can be pinged
    • Checks if the internet can be pinged
    • Checks if the router webUI is up

    If any of those fail, it toggles the plugs for modem and router.

    I run OpnSense on a 5V miniPC. I have a second one and will be setting up CARP, too.

    Note: Cellular backup is more involved, but a separate Cellular inbound might not be. I’ve considered putting one on the Pi above.













  • Yea the catch was we were asking for TLS for a long time, and this was pre- Let’s Encrypt, so those patching on their own didn’t have a free (minus work) way to handle it. It took a releasable POC to get action.

    All out devices just have a permanent Wireguard client since it uses basically no battery, and then a allow rules for households. If you don’t want to run the client, and don’t want to take the time to learn, you don’t get access. But I totally get how that’s not for everyone.



  • Cloudflare is a good choice. I used DNSExit for a while, and also NS1, but settled on Cloudflare. You don’t have to use their proxying, just DNS.

    Here’s a Docker Compose for you that will set myhost.mydomain.com to point to your public IP of wherever it is run:

    dyndns-cloudflare:
        image: oznu/cloudflare-ddns
        container_name: dyndns-cloudflare
        environment:
          - API_KEY=<key>
          - ZONE=mydomain.com
          - SUBDOMAIN=myhost
          - PROXIED=false
        restart: unless-stopped