Hi @markfree,
Once you have tried the solution provided by @garrett, if that does not work.
You will receive an “FAIL” in the healthCheck SSL section as you are using a self-signed certificate. You can try to request a lets encrypt certificate. That would clear the SSL “FAIL” part.
Could you post your nginx configuration file as I think this might be a similar issue I had on my Apache server.
The solution for it was updating my .htaccess: Passbolt 3 CE - Apache configuration - #13 by farfade
I think your configuration file might be missing the following: the bellow is an htaccess equivalent for nginx.
location / {
...
if (!-e $request_filename){
rewrite ^(.*)$ /index.php break;
}
...
}
You might be missing the above, not too sure. Will have to see your configuration file.
Regards,
Bond