HTTP to HTTP configuration problem

Hi @solaire,

You’re right, I got the same issue, and only with docker. If you have a look at the browser debug console, it seems related to some CORS issue:


While waiting this to be fixed, you can edit and bind mount a modified version of /etc/nginx/snippets/passbolt-ssl.conf file by adding this somewhere in the file content:

  if ($scheme = http) {
    return 301 https://$host$request_uri;
  }

Thus, if http scheme is detected, your request will be redirected to its https version :slight_smile: