Hello,
I run jellyfin 10.4.3 via an nginx reverse proxy from a subpath. I used the official documentation and changed
proxy_pass http://127.0.0.1:8096/jellyfin/ to proxy_pass http://127.0.0.1:8096/
and added
proxy_redirect default;
proxy_redirect / /jellyfin/;
Everything is running fine except that the logs and the dashboard under activitiy only shows the IP address “127.0.0.1”.
In nginx I have set the following globally in nginx.conf:
set_real_ip_from 127.0.0.1;
set_real_ip_from 192.168.178.0/24;
set_real_ip_from ::1;
real_ip_header X-Forwarded-For;
real_ip_recursive on;
I absolutely need the real IP addresses trying to log in because I want to secure the instance via fail2ban.
My Nextcloud for example logs the real IP addresses.
Why does it not work with jellyfin?