I’ve got a mini pc which is running always and another one which consumes a lot more power for e.g. jellyfin.

Can I configure it such that the jellyfin server only boots if I connect to it? E.g. I try to connect to jellyfin.y.com and then the server boots because the mini pc tries to connect to it.

I already figured out how to let it sleep automatically as soon as nobody is watching.

Edit: can I add the magic package to the reverse proxy?

    • enemenemu@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      5
      ·
      1 day ago

      Thanks!

      I use nginxproxymanager, I’ll try to find something similar (I couldn’t find something directly)

        • enemenemu@lemm.eeOP
          link
          fedilink
          English
          arrow-up
          1
          ·
          11 hours ago

          I’d be happy to switch if I had a good tutorial for caddy. Unfortunately I couldn’t find one.

            • enemenemu@lemm.eeOP
              link
              fedilink
              English
              arrow-up
              1
              ·
              9 hours ago

              It doesn’t work. I can’t manage to debug it.

              Fedora server. Podman. Selinux. Port 8443. Ipv4.

              • Xanza@lemm.ee
                link
                fedilink
                English
                arrow-up
                2
                ·
                2 hours ago

                it doesn’t work

                …what exactly doesn’t work. You’re not really giving me enough to help you with.

                • enemenemu@lemm.eeOP
                  link
                  fedilink
                  English
                  arrow-up
                  1
                  ·
                  2 hours ago

                  Thx for offering your help.

                  If I would know, I could debug it, but I don’t know where the problem is. I assume the problem is somewhere with podman or selinux

                  • Xanza@lemm.ee
                    link
                    fedilink
                    English
                    arrow-up
                    1
                    ·
                    2 hours ago

                    But you gotta understand, there’s no subject to your statement. You just said “it doesn’t work” and I have no idea what you’re doing. Are you installing podman? Are you installing caddy? Are you setting up caddy as a reverse proxy? Are you trying to bring your dog back from the dead? I have no frame of reference.

          • Xanza@lemm.ee
            link
            fedilink
            English
            arrow-up
            3
            arrow-down
            4
            ·
            edit-2
            20 hours ago

            I mean, use what you want. But caddy is significantly easier to configure. It additionally handles SSL and protects your proxy targets with zero configuration (by default) and supports live configuration reload via the admin interface. It’s tits.

            Here’s my config: http://i.xno.dev/u/fc8N0n.png

            Caddy is running a wildcard SSL cert, so once I’ve connected my box to cloudflare, I can setup a subdomain by simply adding it to my caddy config. No additional setup is required. It also works directly with docker, so if you install the lemmy (name of the container) docker container, you can reverse_proxy by simply (assuming they’re on the same docker network):

            lemmy.domain.com {
                reverse_proxy lemmy:80
            }
            
            • themachine@lemmy.world
              link
              fedilink
              English
              arrow-up
              10
              arrow-down
              1
              ·
              edit-2
              18 hours ago

              That sounds more or less to be exactly what I’m doing with NPM currently. I don’t see how it’s easier to configure as all I did was fire up the NPM container, log in, and add my host targets.

              NPM also handles SSL both standard http verification as well as DNS auth for wildcards.