• dan@upvote.au
    link
    fedilink
    arrow-up
    0
    ·
    3 months ago

    one point registration for multiple communities,

    Federation, or at least some form of single sign-on with arbitrary providers (like we used to do with OpenID), is a better way of solving this.

      • dan@upvote.au
        link
        fedilink
        arrow-up
        0
        ·
        3 months ago

        I’ve never tried Matrix but I’ve heard good things about it.

        • Zworf@beehaw.org
          link
          fedilink
          arrow-up
          0
          ·
          edit-2
          3 months ago

          It’s not as snazzy as Discord but it’s fully open-source and federated. So everyone can run their own server (I do, too). If you don’t care about running your own you can just sign up at https://app.element.io/ . It’s free of course. It basically is for chat what lemmy and mastodon are to social media.

          It also offers many “bridges” to other protocols, like WhatsApp, Telegram, even Discord. Those are not quite as mature and mostly third-party provided but they generally work well.

          There’s a really great ansible playbook for installing your own. If you would like to have the full bridged experience, beeper is probably best.

          • dan@upvote.au
            link
            fedilink
            arrow-up
            0
            ·
            3 months ago

            Thanks! I’ll have to see if there’s Docker containers available. Ansible is definitely doable too, but I prefer Docker. I’ll stick it on the same server I’m running Lemmy and Mastodon on :)

            • Zworf@beehaw.org
              link
              fedilink
              arrow-up
              0
              ·
              3 months ago

              Actually the ansible playbook creates a bundle of docker containers so you get the best of both :)

              • dan@upvote.au
                link
                fedilink
                arrow-up
                0
                ·
                3 months ago

                Ahh… Interesting!

                Do you know how much RAM it needs? I have a spare VPS with 9GB RAM - is that sufficient? I could run it in a VM on my home server instead, too.

                • Zworf@beehaw.org
                  link
                  fedilink
                  arrow-up
                  0
                  ·
                  edit-2
                  3 months ago

                  Yeah for sure. I run the server + a bunch of bridges (whatsapp, signal, telegram, chatgpt) on an old atom NUC with 8GB RAM and it only actually uses 2 GB.

                  Here’s the documentation for the playbook: https://github.com/spantaleev/matrix-docker-ansible-deploy

                  I can really recommend it. It takes some reading to set it up because it’s insanely configurable. But in the end I have a config file with like 20 statements in it and that sets it all up and keeps it up to date.

                  • dan@upvote.au
                    link
                    fedilink
                    arrow-up
                    0
                    ·
                    edit-2
                    3 months ago

                    Just tried out that playbook to set up a staging server, and it works pretty well.

                    I feel like it’s a bit too magical though. I like knowing how all the software I’m using is installed and configured, and introducing another layer of abstraction makes that harder. I have particular ways things like my web server (Nginx), database servers, Let’s Encrypt (certbot), etc are configured and want to keep things that way. I think I’ll just use the Ansible playbook for the staging server, and set up the real server using the Docker containers directly, based on documentation from the upstream projects (Synapse, etc)

                    It looks like they have both Docker containers and Debian packages avaliable, so I’ll have to see if it’s worth using the Debian packages instead.