diff --git a/src/nginxconfig/i18n/en/templates/domain_sections/https.js b/src/nginxconfig/i18n/en/templates/domain_sections/https.js index bda4dfd..10f2759 100644 --- a/src/nginxconfig/i18n/en/templates/domain_sections/https.js +++ b/src/nginxconfig/i18n/en/templates/domain_sections/https.js @@ -32,7 +32,9 @@ export default { enableHttp2Connections: `${common.enable} ${common.http}/2 connections`, forceHttps: `Force ${common.https}`, hsts: 'HSTS', - enableStrictTransportSecurity: `${common.enable} Strict Transport Security`, + enableStrictTransportSecurity: `${common.enable} Strict Transport Security, requiring HTTPS connections`, + enableIncludeSubDomains: `${common.enable} includeSubDomains directive, requiring HTTPS connections for ALL subdomains`, + enablePreload: `${common.enable} preload directive, telling browsers to always make HTTPS connections only`, certificationType: 'Certification type', customCertificate: 'Custom certificate', letsEncryptEmail: `${common.letsEncrypt} email`, diff --git a/src/nginxconfig/templates/domain_sections/https.vue b/src/nginxconfig/templates/domain_sections/https.vue index e613f1a..baac261 100644 --- a/src/nginxconfig/templates/domain_sections/https.vue +++ b/src/nginxconfig/templates/domain_sections/https.vue @@ -101,7 +101,7 @@ THE SOFTWARE.
- includeSubDomains + {{ i18n.templates.domainSections.https.enableIncludeSubDomains }}
@@ -110,7 +110,7 @@ THE SOFTWARE.
- preload + {{ i18n.templates.domainSections.https.enablePreload }}
@@ -220,7 +220,7 @@ THE SOFTWARE. enabled: true, }, hstsPreload: { - default: true, + default: false, enabled: true, }, certType: {