We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3009c0e + 8cd712b commit 22a6318Copy full SHA for 22a6318
sites-available/example.com.conf
@@ -171,6 +171,9 @@ server {
171
ssl_certificate /etc/ssl/certs/example-cert.pem;
172
ssl_certificate_key /etc/ssl/private/example.key;
173
174
+ # Disable SSL v3 protocol to fix POODLE bug.
175
+ ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
176
+
177
## Strict Transport Security header for enhanced security. See
178
## http://www.chromium.org/sts. I've set it to 2 hours; set it to
179
## whichever age you want. However, we can't set this here because adding
0 commit comments