renderD128 (Intel dgpu) couldn’t be added to the container (linuxserver image). Will take a look later, when I’m home, to find the issue. But may take your time for the update and don’t yolo it like I did :)
- 0 Posts
- 8 Comments
Joined 3 years ago
Cake day: June 19th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
thisNotMyName@lemmy.worldto
Political Memes@lemmy.world•Here we go! Conservatives masquerading as Libertarians is happening!
15·2 years agoIt’s (based on) the Gadsden flag https://en.wikipedia.org/wiki/Gadsden_flag
It’s not like you have no choice changing your plan moving into the middle of nowhere, is it?
More car, more problem, but you do you
thisNotMyName@lemmy.worldto
Memes@lemmy.ml•Shout out to the oil, meat, and shipping industries
1·3 years agoWelcome to the coldest summer for the rest of your life :)
thisNotMyName@lemmy.worldto
Selfhosted@lemmy.world•[ELI5] What is a reverse proxy exactly and how do I use it to run several dockerized services on one machine?English
1·3 years agoSince you already got a lot of ELI5s, here is a basic to-do to get you up and running. From my experience, since I use the exact same setup as you describe.
- Set up your containers in a way you can reach them from you local network (e.g. http://123.456.789.10:123)
- Get a domain name (you can get one at the registrar of your choice, e.g. mydomain.com)
- Set up NGINX proxy manager (NPM) (default address of webui would be http://123.456.789.10:81)
- Set up a new proxy host in NPM:
- Domain name: mycontainer.mydomain.com
- Scheme: http
- Forward Hostname/IP: 123.456.789.10 (if you get an error later on, you can use the docker container name if NPM and your container are connected to the same Docker network)
- Port: 123
- Via access lists you can provide a very basic username/pw login to protect your sites (you can do more and cooler stuff with Authelia)
- In the SSL tab you can (and should) setup the SSL encryption: https://www.youtube.com/watch?v=TBGOJA27m_0
- Go to the DNS management of your registrar
- Add an A-record for mydomain.com and the public IP of your server (you can google public IP to find it out)
- Add a CNAME record for the subdomain with name mycontainer and target mydomain.com
- open port 443 of your server in your router If everything worked right, you can visit mycontainer.mydomain.com, your DNS server will resolve this to your public IP and forwards the request to nginx, which will serve the data of your local container

It totally depends on how you expose it to the outside world. If it’s exposed just like it is, it works fine with every device. If you put an authentication before it (e.g. Authelia), it can only be accessed by browsers from outside the network. That being said, it’s not recommended to expose Jellyfin directly, because there are a ton of security flaws. Best practice is to use a VPN