@un_ax@lemmy.today
member since 27 May 2026 18:56
comments
- on Private AI? in c/privacy@lemmy.ml · 5h ago
-
on Do any self hostable security cameras support a VPN to upload footage to another site? in c/selfhosted@lemmy.world · 28 Aug 2026
Alternatively, can they run over a tailscale subnet router?
Yes, the cameras wouldn’t need to be aware of tailscale (or a VPN), you’d just put a pi or install tailscale on a PC there and expose the cameras over the subnet router config to your server also on tailscale.
-
on Good resources for setting up a domain name to a local Caddy instance in c/selfhosted@lemmy.world · 15 Aug 2026
The other answers covered options on hooking up the internal DNS, so here is the https part for the sake of completeness.
One option is running an internal CA, but that’s for crazy people. And you have to distribute your root CA to every device using it, which can be annoying if you don’t have centralized configuration management in place.
If you want https with caddy and don’t want it exposed you can use a DNS challenge with your external DNS provider. Check the list here for your provider.
Assuming docker and your dns isn’t built in you build a custom docker image with the plugins you need. This is a Dockerfile for route53 based on here:
FROM caddy:builder AS builder RUN xcaddy build \ --with github.com/caddy-dns/route53 FROM caddy:alpine COPY --from=builder /usr/bin/caddy /usr/bin/caddy
And then a docker-compose.yml in the same dir to use it:
services: caddy: build: . restart: unless-stopped ports: - 80:80 - 443:443 - 443:443/udp volumes: - ./caddy_data:/data - ./caddy_config:/config - ./conf:/etc/caddy
With this mount setup you write
conf/Caddyfileand include the DNS provider specific configuration relevant to your plugin, probably documented in its repo.
The TEE mentioned in this article is essentially hardware level identity/encryption similar to the boot chain of a phone or game console, so if you trust nvidia then it sounds like it would work. If you trust nvidia. And all of the other implementation details.
There is actually Homomorphic encryption where you can operate on encrypted data, but I don’t imagine it’s used much in machine learning since it takes 100-10,000x longer than the plaintext operation.