Hello,
Just want to confirm that this is the correct procedure to update the LetsEncrypt certificates every ~3 months:
I have in my docker-compose file:
volumes:
- /opt/mailserver/letsencrypt:/etc/letsencrypt
I generate/renew the certificates on the host machine, then:
cp -R -L /etc/letsencrypt/live/mail.mydomain.com/* /opt/mailserver/letsencrypt/live/mail.mydomain.com/
docker exec mailserver openssl s_client -connect 0.0.0.0:25 -starttls smtp -CApath /etc/ssl/certs/
Verify return code: 0 (ok)
docker exec mailserver openssl s_client -connect 0.0.0.0:143 -starttls smtp -CApath /etc/ssl/certs/
Verify return code: 0 (ok)
Is this correct and enough? I don't need to restart any services or even the container?
Thank you very much :)
Hello,
Just want to confirm that this is the correct procedure to update the LetsEncrypt certificates every ~3 months:
I have in my docker-compose file:
I generate/renew the certificates on the host machine, then:
Is this correct and enough? I don't need to restart any services or even the container?
Thank you very much :)