From b9258e57978af5ea3bcc182ed13c84d8d7a0dd10 Mon Sep 17 00:00:00 2001 From: Weiyan Shao Date: Thu, 31 May 2018 21:57:35 +0200 Subject: [PATCH] Further fix the backwards compatibility issue --- examples/custom_config/nginx-conf/my.example.com.ssl.conf.erb | 2 +- fs_overlay/etc/cont-init.d/00-welcome | 2 +- fs_overlay/var/lib/nginx-conf/default.ssl.conf.erb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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;