From ca19747d2b1de1be8d4e863a7bd60c41c30ff6ef Mon Sep 17 00:00:00 2001 From: PhieF Date: Thu, 18 Oct 2018 14:49:53 +0200 Subject: [PATCH] Apache config wasn't working SSLStaplingCache needs to be outside of VirtualHost and adding missing --- docs/INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 70d19c0a..b0bce84f 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -301,13 +301,14 @@ If you prefer Apache, you can use this configuration (here too, replace `blog.ex ServerName blog.example.com Redirect / https://blog.example.com/ - +SSLStaplingCache "shmcb:logs/stapling-cache(150000)" ServerAdmin admin@example.com ServerName blog.example.com Header always set Referrer-Policy "strict-origin-when-cross-origin" Header always set Strict-Transport-Security "max-age=31536000" + SSLEngine on # for cipher conf: https://cipherli.st/ @@ -319,7 +320,6 @@ If you prefer Apache, you can use this configuration (here too, replace `blog.ex Header always set X-Content-Type-Options nosniff SSLCompression off SSLUseStapling on - SSLStaplingCache "shmcb:logs/stapling-cache(150000)" # Requires Apache >= 2.4.11 SSLSessionTickets Off