2025-01-13, 05:57 PM 
		
	
	
		I have an issue with client IPs on reverse proxy.
When accessing my jellyfin server from jellyfin.mydomain.zxz all my client IP are listed as my gateways IP address (192.168.1.1) - regardless of the clients are located on my local network or as a remote connection. But they show correctly then accessing the server locally.
Im using Traefik 3.3.1 and Jellyfin 10.10.3
My network settings are as following:
	
	  
	
	
When accessing my jellyfin server from jellyfin.mydomain.zxz all my client IP are listed as my gateways IP address (192.168.1.1) - regardless of the clients are located on my local network or as a remote connection. But they show correctly then accessing the server locally.
Im using Traefik 3.3.1 and Jellyfin 10.10.3
My network settings are as following:
Code:
<?xml version="1.0" encoding="utf-8"?>
<NetworkConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <BaseUrl />
  <EnableHttps>false</EnableHttps>
  <RequireHttps>false</RequireHttps>
  <InternalHttpPort>8096</InternalHttpPort>
  <InternalHttpsPort>8920</InternalHttpsPort>
  <PublicHttpPort>8096</PublicHttpPort>
  <PublicHttpsPort>8920</PublicHttpsPort>
  <AutoDiscovery>true</AutoDiscovery>
  <EnableUPnP>false</EnableUPnP>
  <EnableIPv4>true</EnableIPv4>
  <EnableIPv6>false</EnableIPv6>
  <EnableRemoteAccess>true</EnableRemoteAccess>
  <LocalNetworkSubnets />
  <LocalNetworkAddresses>
    <string>192.168.1.200</string>
  </LocalNetworkAddresses>
  <KnownProxies>
    <string>traefik</string>
  </KnownProxies>
  <IgnoreVirtualInterfaces>true</IgnoreVirtualInterfaces>
  <VirtualInterfaceNames>
    <string>veth</string>
  </VirtualInterfaceNames>
  <EnablePublishedServerUriByRequest>false</EnablePublishedServerUriByRequest>
  <PublishedServerUriBySubnet />
  <RemoteIPFilter />
  <IsRemoteIPFilterBlacklist>false</IsRemoteIPFilterBlacklist>
</NetworkConfiguration>

