From 067d7727888578b69f8c23b692469d25fe427b68 Mon Sep 17 00:00:00 2001 From: Daniel Marquard Date: Mon, 1 Aug 2016 14:21:35 -0400 Subject: [PATCH] No trailing semicolon per RFC 6797 These lines should not include trailing semicolons. https://tools.ietf.org/html/rfc6797 --- h5bp/directive-only/ssl.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/h5bp/directive-only/ssl.conf b/h5bp/directive-only/ssl.conf index f0545da..a1c830e 100644 --- a/h5bp/directive-only/ssl.conf +++ b/h5bp/directive-only/ssl.conf @@ -32,12 +32,12 @@ keepalive_timeout 300s; # up from 75 secs default # HSTS (HTTP Strict Transport Security) # This header tells browsers to cache the certificate for a year and to connect exclusively via HTTPS. -#add_header Strict-Transport-Security "max-age=31536000;"; +#add_header Strict-Transport-Security "max-age=31536000"; # This version tells browsers to treat all subdomains the same as this site and to load exclusively over HTTPS -#add_header Strict-Transport-Security "max-age=31536000; includeSubDomains;"; +#add_header Strict-Transport-Security "max-age=31536000; includeSubDomains"; # This version tells browsers to treat all subdomains the same as this site and to load exclusively over HTTPS # Recommend is also to use preload service -#add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload;"; +#add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload"; # This default SSL certificate will be served whenever the client lacks support for SNI (Server Name Indication). # Make it a symlink to the most important certificate you have, so that users of IE 8 and below on WinXP can see your main site without SSL errors.