Skip to content
This repository was archived by the owner on Aug 10, 2020. It is now read-only.

Commit 356c116

Browse files
author
gau1991
committed
Updated SSL cipher for support with HTTP2
1 parent 05d0ab2 commit 356c116

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

nginx/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
nginx (1.8.0-9ppa) stable; urgency=high
2+
3+
* Improved SSL Cipher for better security and support with HTTP2
4+
5+
-- rtCamp <sys@rtcamp.com> Tue, 5 Jan 2016 16:49:16 +0530
6+
17
nginx (1.8.0-8ppa) stable; urgency=high
28

39
* Added memc-nginx-module into nginx-custom package

nginx/debian/conf/nginx.conf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ http {
1212
##
1313
# EasyEngine Settings
1414
##
15-
15+
1616
sendfile on;
1717
tcp_nopush on;
1818
tcp_nodelay on;
@@ -34,15 +34,15 @@ http {
3434

3535
fastcgi_read_timeout 300;
3636
client_max_body_size 100m;
37-
37+
3838
##
3939
# SSL Settings
4040
##
41-
41+
4242
ssl_session_cache shared:SSL:20m;
4343
ssl_session_timeout 10m;
4444
ssl_prefer_server_ciphers on;
45-
ssl_ciphers HIGH:!aNULL:!MD5:!kEDH;
45+
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:ECDHE-RSA-DES-CBC3-SHA:ECDHE-ECDSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA;
4646
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
4747

4848
##
@@ -109,17 +109,17 @@ http {
109109
#mail {
110110
# # See sample authentication script at:
111111
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
112-
#
112+
#
113113
# # auth_http localhost/auth.php;
114114
# # pop3_capabilities "TOP" "USER";
115115
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
116-
#
116+
#
117117
# server {
118118
# listen localhost:110;
119119
# protocol pop3;
120120
# proxy on;
121121
# }
122-
#
122+
#
123123
# server {
124124
# listen localhost:143;
125125
# protocol imap;

0 commit comments

Comments
 (0)