jfa-go icon indicating copy to clipboard operation
jfa-go copied to clipboard

Password Reset

Open Facinorous-420 opened this issue 2 years ago • 1 comments

I am having an issue with password resets. When I enter my username on Jellyfin and click reset password, the page does nothing. Though, the browser dev console says this:

https://bss.nz/i/10-06-2021-FojkinSzDc.png

This is my nginx configuration for this subfolder:

location /media {
    return 301 $scheme://$host/media/;
}

location ^~ /media/ {
    include /etc/nginx/conf.d/extras/proxy2.conf;
    set $upstream_app 127.0.0.1;
    set $upstream_port 8096;
    set $upstream_proto http;
    proxy_pass $upstream_proto://$upstream_app:$upstream_port;

    proxy_set_header Range $http_range;
    proxy_set_header If-Range $http_if_range;
}

location /media/Users/ForgotPassword {
    proxy_pass http://127.0.0.1:8096/Users/ForgotPassword;
    proxy_set_header X-Forwarded-For 127.0.0.1;
}

location /media/Users/ForgotPassword/Pin {
    proxy_pass http://127.0.0.1:8096/Users/ForgotPassword/Pin;
    proxy_set_header X-Forwarded-For 127.0.0.1;
}

Is there something I am missing?

Facinorous-420 avatar Oct 06 '21 19:10 Facinorous-420

This seems like an issue with Jellyfin, although it might be your routing with nginx. Does the page work if you access it directly without the reverse proxy?

hrfee avatar Oct 06 '21 22:10 hrfee