• 0 Posts
  • 18 Comments
Joined 5 months ago
cake
Cake day: February 25th, 2024

help-circle
  • I’ll quote Vaxry from his blog:

    “Obviously, the fact that I am banned from contributing to Freedesktop - and by extension wlroots, is another big factor, and probably the one that finally tipped the scales, because I am no longer allowed to participate in discussion or contribute code to wlroots.”

    https://blog.vaxry.net/articles/2024-wlrootsRewrite

    “I definitely am not a fan of how seemingly weak people online, especially teenagers, have become. Words are just words. Someone calling another person a “retard” shouldn’t really be a big deal.”

    "I said:

    if I run a discord server around cultivating tomatoes, I should not exclude people based on their political beliefs, unless they use my discord server to spread those views. which means even if they are literally adolf hitler, I shouldn’t care, as long as they don’t post about gassing people on my server

    that is inclusivity

    Which I definitely stand by."

    https://blog.vaxry.net/articles/2023-inclusiveActivists



  • In other words, Vaxry is so unwilling to compromise or learn from others that he would rather isolate his project from the broader FOSS community. That says a lot about him and the people who support him, especially since this conflict with freedesktop.org started over Vaxry condoning hateful trolling of trans people within the Hyprland community.

    This is a problem for me as a Hyprland user because if I share some rice I made or make suggestions for other users, I’m leading people into a community that may be actively hateful towards them. It utterly extinguishes any enthusiasm I have for the project. I like the software but I’d rather be part of a project and a community that I can feel good and excited about. Maybe time to find a new tiling Wayland compositor.





  • I self host jellyfin, nextcloud, owncast, tandoor, komga, photoprism and searxng. I use nginx proxy manager for a reverse proxy and SSL cert automation. Works great for me but I would like to get into traefik sometime.

    I self host for privacy reasons, also it’s fun, it’s a learning opportunity and sometimes self-hosted services are functionally better than the other options out there.









  • Traefik is powerful and versatile but has a steep learning curve. It also uses code to control its configuration which is a bonus for reliability and documentation as discussed elsewhere ITT. Nginx proxy manager is much simpler and easier to use, may be a good one to get started with, but lacks the advantages of traefik described above. Nginx proxy manager does support SSL cert automation.


  • Another suggestion for you, I highly recommend specifying a version for the docker image you are using for a container, in the compose file. For example, nextcloud:29.0.1. If you just use :latest, it will pull a new version whenever you redeploy which you may not have tested against your setup, and the version upgrade may even be irreversible, as in the case of nextcloud. This will give you a lot more control over your setup. Just don’t forget to update images at reasonable intervals.



  • I use markdown text files which are synced to my nextcloud instance.

    This is somewhat tangential to your post, but I think using infrastructure as code and declarative technologies is great for reliability because you aren’t just running a bunch of commands until something works, you have the code which tells you exactly how things are set up, and you can version control it to roll back to a working state. The code itself can be a form of documentation in that case.