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

help-circle
rss











  • 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
    


  • Good question, but you should definitely install both and try them out! Just in case you didn’t know since you’re new to Linux, you can install as many desktop environments as you want. You pick the one to use at the login screen. All your programs and files will still be there.

    To answer your question: I prefer Gnome because I find it simpler and less distracting, but I’ve since moved to i3, then Sway, and now Hyprland.