Need help Changing from HTTP to HTTPS

I had my Passbolt running ubuntu server using the ubuntu script.
Now I have create a certificate but I cannot get it to work.

I edited the APP_FULL_BASE_URL=http://passbolt” to APP_FULL_BASE_URL=https://passbolt”

placed the certificate under /etc/ssl/certs/passbolt_certificate.crt and /etc/ssl/certs/passbolt_private.key

modified /etc/nginx/conf.d/passbolt.conf by adding listen 443 ssl;

now my server is not accessible.
can anyone point me in the right direction or any document I can read up on.

Thanks

Hi @tyw, you might need to provide additional information to define what “not accessible” is meaning in your case.

One thing more that might be needed is to tell Nginx where to find the certs:

ssl_certificate /etc/ssl/certs/passbolt_certificate.crt;
ssl_certificate_key /etc/ssl/certs/passbolt_private.key;

To “test” Nginx configuration for errors run:

nginx -t

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.