2024-01-11, 04:19 AM
(This post was last modified: 2024-01-11, 04:21 AM by TheDreadPirate. Edited 2 times in total.)
The reverse proxy passes the requestor's IP.
You can check in your jellyfin log by looking for this line. "IsInLocalNetwork".
Since you are not allowing remote connections, can I assume you are using a VPN?
What subnets do you have in Dashboard > Networking > LAN Networks?
Code:
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
You can check in your jellyfin log by looking for this line. "IsInLocalNetwork".
Code:
[INF] RemoteClientBitrateLimit: 40000000, RemoteIp: "<Client IP goes here>", IsInLocalNetwork: False
Since you are not allowing remote connections, can I assume you are using a VPN?
What subnets do you have in Dashboard > Networking > LAN Networks?