• 0 Posts
  • 7 Comments
Joined 2 years ago
cake
Cake day: October 27th, 2023

help-circle
  • I mostly agree with this. If you’re asking for help on an Arch forum, I think it’s fair to expect you know how your system is installed and configured. However, we know many use EndeavourOS (or Archinstall) to avoid having to configure their system. Forums provide free support; I think it’s fair they get a say in what issues they don’t want to deal with.






  • 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