

What do your docker logs mention? Especially regarding sab ans deluge?


What do your docker logs mention? Especially regarding sab ans deluge?


Usually you should be able to download a wg0.conf file from your vpn provider. It basically contains all the data that you provided via env var in a specific format.
Note: the server address has to be an IP address since gluetun won’t resolve addresses (see here).


You could maybe try using the wg0.conf and mount this insteas. Here is how I set it up (works with proton and windscribe)
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
- NET_ADMIN
environment:
- VPN_SERVICE_PROVIDER=custom
- VPN_TYPE=wireguard
devices:
- /dev/net/tun:/dev/net/tun
ports:
- 9090:8080 # SABnzbd webui port forwarding
volumes:
- ./Wireguard/wg0.conf:/gluetun/wireguard/wg0.conf:ro
restart: unless-stopped


The mivie is called Filth iirc


I love it so much that I donaged twice to the project. There are also some easter-eggs hidden in the software, like quotes from Dune.


Because of that they switched to USD one or two years ago, which made it impossible to afford games for a lot of people.


Damn, I this is exactly what I searched for, I’ll deploy it immediately, thanks a lot!


Ireland?


I would also recommend a VPN. However, if this doesn’t work or you want to share it with friends I would recommend something like a VPS relay: https://codeberg.org/skjalli/jellyfin-vps-setup
I am using the free Oracle VPS offer until they block me, so far I have no issue. Alzernatively I wanted to check out IONOS, since you dont have a bandwidth limit there.
I use a VPS and a wiregusrd tunnel.
Yeah the link I posted does everything via docker and explains what should be mounted and how.
I get you and I know that there can be security issues (especially in Jellyfin) that might give you access. This is the reason I only mount the media and config folders, and nothing else into the docker container. The media folders are mounted as read only and don’t contain sensitive information. For the config folder I created a separate user. Plus I block non-German IP addresses which already blocks quite some bots. If your friends have fixed IP addresses you could also just whitelist them and block everything else.
You could also probably sniff the network and define more strict rules on ‘allowed’ requests in fail2ban but this is bridle because requests might change with different versions.
Hell I know what you mean, it was so much trial and error until it worked, hence this guide/template to help others. Plus at some point it feels more like work than a hobby 😅
This is how I do it: https://codeberg.org/skjalli/jellyfin-vps-setup


Have to check their backlog then. I hope I’ve secured it enough. Even if someone gets into the system they should only be able to view the media I mount into the docker container and the logs. So hopefully nothing harmful.


Thanks, I currently use the Oracle free tier and so far so good
This is my setup
sabnzbd: ... restart: unless-stopped network_mode: "service:gluetun" gluetun: image: qmcgaw/gluetun container_name: gluetun cap_add: - NET_ADMIN environment: - VPN_SERVICE_PROVIDER=custom - VPN_TYPE=wireguard devices: - /dev/net/tun:/dev/net/tun ports: - 9090:8080 # SABnzbd webui port forwarding volumes: - ./Wireguard/wg0.conf:/gluetun/wireguard/wg0.conf:ro restart: unless-stoppedNote how i explicitly tell sabnzbd container to use gluetun as a network.
Afaik, with your setup you simply run both containers in the same network so that both can reach each other.