• 0 Posts
  • 6 Comments
Joined 2 years ago
cake
Cake day: June 1st, 2023

help-circle

  • I’ve got the same Geekworm cases for all my Raspberries. Added some extra thermal pads in some strategic places and have them all without any active cooling at room temperature (20-21℃). They barely go over 55℃:

    The 3B+ has soft-throttling (can be disabled) starting at 60℃, full throttling at 70°C. The 4 starts throttling at 80℃ and the 5 at 85℃. So, with that completely passive cooling I’m still far away from these margins. No need for any moving parts that will make noise at some point in the future.

    Also, since the cases have ribs on both sides, I have my Pis standing upright to hopefully make use of the stack effect - which might contribute to the slightly lower than OP’s values.




  • it seems easier to manage stuff not in docker

    Read into Traefik’s dynamic configuration. Adding something outside of Docker is as easy as adding a new config file in the dynamic configuration folder. E.g. jellyfin.yml:

    http:
    
      routers:
    
        jellyfin:
          rule: Host(`jellyfin.example.org`)
          entrypoints: websecure
          tls:
            certResolver: le
          service: jellyfin
    
      services:
    
        jellyfin:
          loadbalancer:
            servers:
              - url: "http://192.168.1.5:8096/"
    

    The moment you save that file it will be active and working in Traefik.