diff options
author | Henry Jameson <me@hjkos.com> | 2017-08-16 00:25:26 +0300 |
---|---|---|
committer | Henry Jameson <me@hjkos.com> | 2017-08-16 00:25:26 +0300 |
commit | a6e89ae6a389c23288ef6abc9459da35002e0fac (patch) | |
tree | a0936c73cf2a3b23b5343f9870c8268a0b4e3d79 /installation/pleroma.nginx | |
parent | 0391981b4d16deda0fc80dea4c97c675d07d3aec (diff) | |
download | pleroma-a6e89ae6a389c23288ef6abc9459da35002e0fac.tar.gz pleroma-a6e89ae6a389c23288ef6abc9459da35002e0fac.zip |
disable sslv3
Diffstat (limited to 'installation/pleroma.nginx')
-rw-r--r-- | installation/pleroma.nginx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installation/pleroma.nginx b/installation/pleroma.nginx index 1bdb95ab4..1a6e1d56f 100644 --- a/installation/pleroma.nginx +++ b/installation/pleroma.nginx @@ -12,7 +12,7 @@ server { ssl_certificate /etc/letsencrypt/live/exmaple.tld/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/example.tld/privkey.pem; - ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2; + ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES"; ssl_prefer_server_ciphers on; |