aboutsummaryrefslogtreecommitdiffhomepage
path: root/support
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-12-13 17:00:54 +0100
committerChocobozzz <me@florianbigard.com>2019-12-17 09:46:28 +0100
commit1a5fd848b461aac6ea1ec1d2bee62032024ba49d (patch)
treebe7d06175bc3e17f4d446fb613a5ec0dd75a93c6 /support
parentb29bf61dbd518e5cef0b2f564ddc8f8a0657d089 (diff)
downloadPeerTube-1a5fd848b461aac6ea1ec1d2bee62032024ba49d.tar.gz
PeerTube-1a5fd848b461aac6ea1ec1d2bee62032024ba49d.tar.zst
PeerTube-1a5fd848b461aac6ea1ec1d2bee62032024ba49d.zip
Update nginx cipher to the one we use on framatube
Diffstat (limited to 'support')
-rw-r--r--support/nginx/peertube3
1 files changed, 2 insertions, 1 deletions
diff --git a/support/nginx/peertube b/support/nginx/peertube
index 08fae2928..50d3a919f 100644
--- a/support/nginx/peertube
+++ b/support/nginx/peertube
@@ -25,7 +25,8 @@ server {
25 # Security hardening (as of 11/02/2018) 25 # Security hardening (as of 11/02/2018)
26 ssl_protocols TLSv1.2; # TLSv1.3, TLSv1.2 if nginx >= 1.13.0 26 ssl_protocols TLSv1.2; # TLSv1.3, TLSv1.2 if nginx >= 1.13.0
27 ssl_prefer_server_ciphers on; 27 ssl_prefer_server_ciphers on;
28 ssl_ciphers 'ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:AES256-SHA'; # AES256-SHA alias TLS_RSA_WITH_AES_256_CBC_SHA is neccessary for apps on older clients such as android 4.4.2, where more modern cipher suites are not supported. 28 # Remove ECDHE-RSA-AES256-SHA if you don't want compatibility with Android 4
29 ssl_ciphers 'ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA';
29 # ssl_ecdh_curve secp384r1; # Requires nginx >= 1.1.0, not compatible with import-videos script 30 # ssl_ecdh_curve secp384r1; # Requires nginx >= 1.1.0, not compatible with import-videos script
30 ssl_session_timeout 10m; 31 ssl_session_timeout 10m;
31 ssl_session_cache shared:SSL:10m; 32 ssl_session_cache shared:SSL:10m;