I have an Angular 8 application working fine on http.
I just installed a letsencrypt cetificate running "certbot --apache". The certificate is valid and I can see the safety lock on my domain now.
After fixing the environment issue that came up after installing the certificate,
apiUrl: 'https://app.xyz.com:8080'
I got a new error now (net::ERR_SSL_PROTOCOL_ERROR) indicating that backend can´t see the certificate running on front end and can´t handle a https connection.
How do I "pass" the certificate I just created to backend so both can comunicate properly? Or, do I need to install a second SSL Certificate on Back End?