summaryrefslogtreecommitdiffstats
path: root/roles/common-web/files/etc/nginx/snippets
diff options
context:
space:
mode:
Diffstat (limited to 'roles/common-web/files/etc/nginx/snippets')
-rw-r--r--roles/common-web/files/etc/nginx/snippets/ssl.conf11
1 files changed, 0 insertions, 11 deletions
diff --git a/roles/common-web/files/etc/nginx/snippets/ssl.conf b/roles/common-web/files/etc/nginx/snippets/ssl.conf
index 57a317b..58adece 100644
--- a/roles/common-web/files/etc/nginx/snippets/ssl.conf
+++ b/roles/common-web/files/etc/nginx/snippets/ssl.conf
@@ -1,9 +1,6 @@
# https://wiki.mozilla.org/Security/Server_Side_TLS
# https://mozilla.github.io/server-side-tls/ssl-config-generator/?server=nginx-1.14.2&openssl=1.1.1c&hsts=yes&profile=intermediate
-# certs sent to the client in SERVER HELLO are concatenated in ssl_certificate
-# ~$ cat /etc/nginx/ssl/srvcert.pem /usr/share/lacme/lets-encrypt-x3-cross-signed.pem | sudo tee /etc/nginx/ssl/srvcert.chained.pem
-
ssl on;
ssl_session_timeout 1d;
@@ -19,11 +16,3 @@ ssl_prefer_server_ciphers off;
# HSTS (ngx_http_headers_module is required) (31557600 seconds = 1 year)
add_header Strict-Transport-Security "max-age=31557600; includeSubDomains" always;
-
-# OCSP Stapling: fetch OCSP records from URL in ssl_certificate and cache them
-# https://github.com/jsha/ocsp-stapling-examples/blob/master/nginx.conf
-ssl_stapling on;
-ssl_stapling_verify on;
-
-# verify chain of trust of OCSP response using Root CA and Intermediate certs
-ssl_trusted_certificate /usr/share/lacme/lets-encrypt-x3-cross-signed.pem;