[Bug] Perspective :: On mobile browser, can't login into project

Hi,

I tried to log into a perspective project using safari (also tried on Firefox and Chrome) on my iPhone but it keeps loop back to asking me to log in without ever going into any view of the project.

Did anyone get the same problem?

Thanks in advance! :slight_smile:

Using Perspective V1.0.14 on iOS 13.5.1

Edit:

I’ve forgot about it but I’m using nginx as reverse-proxy with self-signed certificate for SSL. It’s working find on every desktop browser but not on mobile browser.

here’s the config I’m using:

server {
    server_name = _;

    # Ignition
    location / {
        proxy_set_header Host $host;

        proxy_pass http://localhost:8088;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        rewrite ^/web/home$ /data/perspective/client/project permanent;
    }


    listen 443 ssl default_server;
    ssl_certificate /etc/ssl/certs/nginx-selfsigned.crt;
    ssl_certificate_key /etc/ssl/private/nginx-selfsigned.key;
    ssl_dhparam /etc/nginx/dhparam.pem;

}

server {

        server_name _;

        listen 80 default_server;
        return 301 https://$host$request_uri;

    }

Hi Alexis, did you get to solve this issue? We’re getting the same problem, even without reverse-proxy in-between.

1 Like