This is a question mostly for the sake of trying to learn more about how self-hosting works, and it is not vital that I resolve this. But if anyone wants to help me understand this, I would greatly appreciate it.
I have a media server running at home with certain Docker containers (Jellyfin, Navidrome and Audiobookshelf currently). I have not exposed these services to the internet, so they are currently only accessible on my home network, which is all I need for the time being. The server itself is connected to an external VPN provider as there may or may not be some torrenting involved at some point. Let’s say the name of the server is mediaserver.
From my laptop connected to the same network, I can access all these services through http://mediaserver.local:
or http://:
, while connected via the same VPN provider on the laptop also. On my cell phone (running CalyxOS), I am unable to do so. I need to disable VPN in order to access the services.
What is the difference between my laptop connected via VPN and my phone doing the same thing, both connected to my home network. I didn’t actually think the VPN would come in to play before making requests outside my home network, but that’s probably just me being ignorant.
- AnEilifintChorcra ( @AnEilifintChorcra@sopuli.xyz ) 2•1 year ago
You probably need to set up split tunneling in your VPN app on your phone. Either enable split tunneling for the apps on your phone that you use to connect to your home server or enable split tunneling in the VPN app for the local IP address of your home server so that you can use any apps to connect to your home server while still having the VPN enabled for any other websites you visit in those apps. I know ProtonVPN and Mullvad both automatically have split tunneling set up for local IPs on PC but not for Android, this would explain the differences between your laptop and phone
Ah, that would explain it. I could set up split tunneling on a per app basis only in my current VPN, and not IP, but it works. However, I am in the process of migrating to ProtonVPN now. Here the “per app”-permission also works, and it does have the option to allow certain IPs, but I was not able to get it to work.
- I_Am_Jacks_____ ( @I_Am_Jacks_____@lemmings.world ) 1•1 year ago
It depends on the VPN. Sometimes there’s a “block local network access” while connected. It could be a client setting or a server setting. Additionally, VPNs are all about routing. So you could run into a problem if you connect to a VPN where the remote network is the same as the IP address of the server you’re trying to connect to.
So if it is that you’re having a conflict between the remote and local networks overlapping, you could change the IP addresses on your local network. It’s probably a good idea not to use the default subnet that your router gives you (like 10.0.0.0 or 192.168.0.0 or 192.168.1.0).
Just checked this, and “Allows local access” is checked in the VPN application, and “Block all non-VPN traffic” is unchecked in Android settings.
About potentially overlapping IPs: I did check, and they were all different (server, laptop, phone).
- skankhunt42 ( @skankhunt42@lemmy.ca ) 1•1 year ago
Try the VPN IP of your other box instead of the FQDN? I use tailscale+headscale to exit onto my home network from mobile.
I had no idea that two hosts using the same VPN provider would/could be on the same network… I share an account with like 4 other people and we each get one device. Now I have to go look.
- Bldck ( @Bldck@beehaw.org ) 1•1 year ago
Check your wan IP on both your laptop and phone.
I typically use
curl https://checkip.amazonaws.com
- vettnerk ( @vettnerk@lemmy.ml ) 4•1 year ago
Tip: curl ifconfig.me
It’s shorter, gives additional info when accessed with a browser, and I don’t trust Jeff Bezos.
- NullGator ( @NullGator@lemmy.ca ) 2•1 year ago
Alternatives:
ipconfig.io
ifconfig.io
ipinfo.io
< this also gives info about the IP and you can use it to do ip lookups withipinfo.io/IP
You can also get your ip through cloudflare dns :
dig ch txt whoami.cloudflare @1.1.1.1 +short
- skankhunt42 ( @skankhunt42@lemmy.ca ) 2•1 year ago
You can also just self host this also by adding a line in your Nginx config to return the client IP var. I have ip.domain.ca and curl that. On mobile now but if anyone is interested I’ll post my config later.
- NullGator ( @NullGator@lemmy.ca ) 2•1 year ago
Would definitely be interested
- skankhunt42 ( @skankhunt42@lemmy.ca ) 2•1 year ago
This is all you need. It’ll return your IP in a curl/wget/browser
location / { add_header Content-Type text/html; return 200 '$remote_addr'; }
Nice!
They are different, but share the first three numbers.