bitnami / vms

Bitnami VMs
https://bitnami.com
Other
203 stars 43 forks source link

[Wordpress] Where can I find my SSL file #1194

Closed Barnabas2 closed 10 months ago

Barnabas2 commented 10 months ago

Describe your issue as much as you can

I'm trying to create a BIMI DNS record as per this documentation: https://docs.aws.amazon.com/ses/latest/dg/send-email-authentication-bimi.html

To create the record, I need a URL that points to the SSL certificate of my domain but I don't know in which server directory I have to look and whether this directory on my server is publicly accessible. Could you please help me?

jotamartos commented 10 months ago

Hi @Barnabas2,

Certificates are usually stored inside the /opt/bitnami/apache/conf folder. We do not suggest you make that folder publicly available due to security concerns. However, you can create a symbolic link to your certificate using the ln command

ln -sf /path/to/the/cert /opt/bitnami/wordpress/

This way, the cert will be available using yourdomain/certnamehere

Please note that the guide you posted is not maintained by us. Please contact AWS if you have any other questions when following it.

Barnabas2 commented 10 months ago

Hello @jotamartos,

This information helps. Thanks a lot.