Hello @khanabid11293,
Thanks for sending the bnsupport code. I was able to check it and see something strange in the file /opt/bitnami/apache2/conf/bitnami/bitnami.conf
I see you have the following chunk of code:
SSLEngine on
SSLCertificateFile "/opt/bitnami/apache2/conf/server.crt"
SSLCertificateKeyFile "/opt/bitnami/apache2/conf/server.key"#
SSLCertificateFile "/etc/letsencrypt/live/www.fashionfactoryshop.in/cert.pem"
SSLCertificateKeyFile "/etc/letsencrypt/live/www.fashionfactoryshop.in/privkey.pem"
SSLCertificateChainFile "/etc/letsencrypt/live/www.fashionfactoryshop.in/chain.pem" SSLCertificateFile "/etc/letsencrypt/live/fashionfactory.in/cert.pem"
SSLCertificateKeyFile "/etc/letsencrypt/live/fashionfactory.in/privkey.pem"
SSLCertificateChainFile "/etc/letsencrypt/live/fashionfactory.in/chain.pem"
While you should only have:
SSLEngine on
SSLCertificateFile "/etc/letsencrypt/live/www.fashionfactoryshop.in/cert.pem"
SSLCertificateKeyFile "/etc/letsencrypt/live/www.fashionfactoryshop.in/privkey.pem"
SSLCertificateChainFile "/etc/letsencrypt/live/www.fashionfactoryshop.in/chain.pem"
Can you update the file and restart the apache service? In order to check the apache syntax before restarting the server please run apachectl -t to verify the configuration is correct.
Finally, restart the apache service by running sudo /opt/bitnami/ctlscript.sh restart apache