diff --git a/examples/custom_config/nginx-conf/my.example.com.ssl.conf.erb b/examples/custom_config/nginx-conf/my.example.com.ssl.conf.erb index d65ec9c..061a4c9 100644 --- a/examples/custom_config/nginx-conf/my.example.com.ssl.conf.erb +++ b/examples/custom_config/nginx-conf/my.example.com.ssl.conf.erb @@ -8,7 +8,7 @@ server { server_name <%= domain.name %>; ssl on; - ssl_certificate <%= domain.signed_cert_path %>; + ssl_certificate <%= domain.chained_cert_path %>; ssl_certificate_key <%= domain.key_path %>; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; diff --git a/fs_overlay/etc/cont-init.d/00-welcome b/fs_overlay/etc/cont-init.d/00-welcome index eeab21d..e19acf7 100644 --- a/fs_overlay/etc/cont-init.d/00-welcome +++ b/fs_overlay/etc/cont-init.d/00-welcome @@ -2,6 +2,6 @@ echo ' ======================================== -HTTPS-PORTAL v1.2.8 +HTTPS-PORTAL v1.2.9 ======================================== ' diff --git a/fs_overlay/var/lib/nginx-conf/default.ssl.conf.erb b/fs_overlay/var/lib/nginx-conf/default.ssl.conf.erb index 74fdb34..21616fd 100644 --- a/fs_overlay/var/lib/nginx-conf/default.ssl.conf.erb +++ b/fs_overlay/var/lib/nginx-conf/default.ssl.conf.erb @@ -3,7 +3,7 @@ server { server_name <%= domain.name %>; ssl on; - ssl_certificate <%= domain.signed_cert_path %>; + ssl_certificate <%= domain.chained_cert_path %>; ssl_certificate_key <%= domain.key_path %>; ssl_protocols TLSv1 TLSv1.1 TLSv1.2;