Page 404 return only with iOS devices

1

I published an application on www.yoohood.fun, created with the create-react-app, using an AWS server, and when the user signs in with the Facebook account, it is redirected to the / sync folder. But when someone accesses the iphone, whether through Safari, Chrome, or safari on other devices, the return is a 404. Can anyone give me a glimpse of what problem might be happening?

Nginx looks like this:

server {
    listen 80;

    server_name 54.233.226.167 yoohood.fun www.yoohood.fun;

    location / {
           proxy_pass http://172.31.0.12:5000;
           proxy_http_version 1.1;
           proxy_set_header Upgrade $http_upgrade;
           proxy_set_header Connection 'upgrade';
           proxy_set_header Host $host;
           proxy_cache_bypass $http_upgrade;

    }

}

server {

    listen 443;

    ssl on;
    ssl_certificate /etc/ssl/https/ssl_bundle.crt;
    ssl_certificate_key /etc/ssl/https/server.key;

    server_name 54.233.226.167 yoohood.fun www.yoohood.fun;

    location / {
           proxy_pass http://172.31.0.12:5000;
           proxy_http_version 1.1;
           proxy_set_header Upgrade $http_upgrade;
           proxy_set_header Connection 'upgrade';
           proxy_set_header Host $host;
           proxy_cache_bypass $http_upgrade;

    }

}
    
asked by anonymous 30.08.2017 / 23:25

0 answers