Raspberry Pi / Fritzbox subdomain forwarding?

I have a few things running on the Pi that are currently accessible like this: raspberrypi:PORT/… This is a bit annoying because you have to remember everything and the browser's autocomplete doesn't help. I would like to have: website1.raspberrypi -> raspberrypi:8000, nodered.raspberrypi -> raspberrypi:1880, ui.raspberrypi -> raspberrypi:1880/ui etc. Even shorter would also be strong, for…

Grocy Installation – Rewrite Error?

Hey, maybe someone here can help me. I installed Grocy (unzipped ZIP). In principle, it should already be running by now. The installation is in the root directory of the subdomain. Actually, as I understand it, it should be accessible under public or with rewrite directly under the subdomain. But neither of these is the…

Nginx redirect wrong?

Hello, what's wrong here? I can't access the websites using the subdomains? http { server { listen 80; server_name service1.punktnetwork.de; location / { proxy_pass http://134.255.232.143:8100; proxy_set_header host map.punktnetwork.de } } server { listen 80; server_name service2.punktnetwork.de; location / { proxy_pass http://134.255.232.143:8100; proxy_set_header host service2.punktnetwork.de; } } }

FFMPEG – Tee Muxer | send the same input/output to 2 servers (rtmp)?

Moinsen ✌🏼 I'd like to know how to send the output from FFMPEG to two servers. In this case, YouTube and Twitch. So, I can basically do it individually or both at once. But I have to run FFMPEG twice. I've done a lot of reading and searching, and I've tested a few things with…