New Auth not working on iPAD

Hi,

I have upgraded to version 077.3 and have setup the new user login. It works great on all my devices and browsers except my ipad!

See screen shot below of whats happening

Its just stuck on this screen and doesnt present the login page! My iPhone works fine either via the browser or the HA app. I have also tried clearing the browser cache

I am using NGINX as my reverse proxy, i’m not sure it would be that causing the issue seeing as it works on everything else but you never know, so here is my config for that as well.

server {
    listen 80;
    listen [::]:80;
    server_name home.***********.com; 
    return 301 https://home.********.com$request_uri;
}


server {
    listen      443 ssl http2;
    root        /srv/www;
     
    ssl_certificate      /etc/nginx/ssl/wildcard.cer;
    ssl_certificate_key  /etc/nginx/ssl/wildcard.key;

    # Make site accessible from http://localhost/
    server_name home.***********.com;

    #charset koi8-r;
    #access_log  /var/log/nginx/log/host.access.log  main;
    error_log stderr;
    
    proxy_buffering off;

    location / {
        proxy_pass       http://172.28.8.143:8123;
        proxy_set_header Host $http_host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_http_version 1.1;
        proxy_set_header Connection "upgrade";
        proxy_set_header Upgrade $http_upgrade;

        ## Optional: Do not log, get it at the destination
        access_log off;
    }
}

Actually i’m pretty sure its not NGINX causing the issue. As I have bypassed NGINX and gone directly to my internal address from within my LAN http://172.28.8.143:8123 and I still get the same problem on my iPad!

I have no issues on chrome or safari on my iPad so it is NGINX I would say. (I use caddy - no problems)

As in my last post, I went directly to my home assistant server thus bypassing NGINX and I still get the same problem. So it cant be NGINX causing the issue!

Whatever you say but it’s working fine for me. Even on external duckdns or internal ip.

Ok - thanks for your input David but I wasn’t looking for flippant comments and to know if its working for you. i was looking for constructive help.

I have already proved its not NGINX by bypassing it so please dont sit here and pretty much call me a liar. If you arent going to help please move aside so others can post.

Fixed my problem after a little deeper digging

As mentioned it wasnt a NGINX issue it was a configuration issue in HA.

frontend:
  javascript_version: latest

This was causing the issue! When I commented this line out my iPad worked again!