diff --git a/public/templates/conf/sites-available/example.com.conf.html b/public/templates/conf/sites-available/example.com.conf.html
index f0dd4bc..7bfb096 100644
--- a/public/templates/conf/sites-available/example.com.conf.html
+++ b/public/templates/conf/sites-available/example.com.conf.html
@@ -30,7 +30,7 @@ server {
- ssl_trusted_certificate /etc/letsencrypt/live/{{ _domain }}/fullchain.pem;
@@ -172,7 +172,7 @@ server {
ssl_certificate_key {{ getSslCertificateKey(_site) }};
- ssl_trusted_certificate /etc/letsencrypt/live/{{ _domain }}/fullchain.pem;
+ ssl_trusted_certificate /etc/letsencrypt/live/{{ _domain }}/chain.pem;
# disable access_log
access_log off;
- ssl_trusted_certificate /etc/letsencrypt/live/{{ _domain }}/fullchain.pem;
+ ssl_trusted_certificate /etc/letsencrypt/live/{{ _domain }}/chain.pem;
return 301 http{{ isHTTPS() ? 's' : '' }}://{{ isWWW() ? 'www.' : '' }}{{ _domain }}$request_uri;
}