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;
}
}