openpgp4fpr:358e81f6a54dc11eaeb0af3faa742fdc5afe2a72

  • 0 Posts
  • 90 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle





  • I run a complete, self-hosted Matrix stack including bridges to WhatsApp, Slack, Telegram and Signal as well as Element Call (Livekit) and MAS (the new authentication system).

    I don’t think there’s any shortcuts. You just need to install them and work through any issues, one-by-one. Start with just the homeserver (Synapse, don’t bother with anything else yet) and add one component at a time and get it working before moving to the next.

    I will say that having a decent knowledge of reverse proxies, networking, DNS and certificates will help you greatly. Having a solid understanding of Docker (if you’re using Docker) would be of great benefit too.

    It should be much easier today than it was five/six-odd years ago when I started; things are more polished now than they were then.















  • Containers are just processes with flags. Those flags isolate the process’s filesystem, memory [1], etc.

    The advantages of containers is that the software dependencies can be unique per container and not conflict with others. There are no significant disadvantages.

    Without containers, if software A has the same dependency as software B but need different versions of that dependency, you’ll have issues.

    [1] These all depend on how the containers are configured. These are not hard isolation but better than just running on the bare OS.