Can't login/redirect squidex with chrome. but login/redirect works with mozila firefox and and safari

**Can’t login/Redirect using chrome. But can access squidex with mozila firefox and safari **

after login with chrome it shows :

.

here is my nginx configuration:

server {
server_name {domain name}
listen 80;

proxy_buffering on;
proxy_buffer_size 32k;
proxy_buffers 8 16k;
proxy_busy_buffers_size 32k;

location / {
  proxy_pass http://localhost:8080;
  proxy_http_version 1.1;
  proxy_set_header Upgrade $http_upgrade;
  proxy_set_header Connection keep-alive;
  proxy_set_header Host $host;
  proxy_cache_bypass $http_upgrade;
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_set_header X-Forwarded-Proto $scheme;
}

}

what should i do??
Thank you.

Chrome does not allow non-https anymore.

if i turn it to https then will it work?

Yes, it should work then.

it works. Thanks a lot

1 Like