• 0 Posts
  • 17 Comments
Joined 1 year ago
cake
Cake day: October 27th, 2023

help-circle
  • I host Caddy and Vaultwarden using Docker. The traffic into the reverse proxy, Caddy, works over port 443, not 1808 or 1443. Using the Caddyfile, you can tell Caddy which port to send the traffic over.

    Caddy docker-compose.yml

    services:
      caddy:
        ports:
          - "80:80"
          - "443:443"
    

    Caddyfile, although there are other ways to do this

    *.example.com {
            @vaultwarden host vaultwarden.example.com
            handle @vaultwarden {
                    reverse_proxy :11808
            }
    

    Vaultwarden docker-compose.yml

    services:
      vaultwarden:
        ports:
          - 11808:80
    







  • Hey! My home server is an HP T630 with a GX-420 GI as well, but only 4 GB of RAM. I upgraded from a Raspberry Pi 3 and it’s been awesome. I’m currently running 18 Docker containers on it without issue. I use Jellyfin on my primary workstation that has my media instead if this server, but I run things like Paperless, Nextcloud, Vaultwarden, Gitea, Wallabag, Pi-hole, NocoDB, and many more. It’s been great, I think thin clients are a great low-cost, low-power solution to x86 home servers.

    I paid around $40 or $50 USD for mine, so $10 sounds great!

    Let me know what questions you have. I can try throwing Jellyfin on it to see how it performs too.