faster better dhparams that actually get used
This commit is contained in:
parent
ff51b41c38
commit
d62e609863
2 changed files with 2 additions and 1 deletions
|
@ -21,6 +21,7 @@ http {
|
||||||
server_names_hash_bucket_size 128;
|
server_names_hash_bucket_size 128;
|
||||||
tcp_nopush on;
|
tcp_nopush on;
|
||||||
client_max_body_size 32G;
|
client_max_body_size 32G;
|
||||||
|
ssl_dhparam "/etc/nginx/dhparams.pem";
|
||||||
|
|
||||||
% if node.has_bundle('php'):
|
% if node.has_bundle('php'):
|
||||||
upstream php-handler {
|
upstream php-handler {
|
||||||
|
|
|
@ -76,7 +76,7 @@ files = {
|
||||||
|
|
||||||
actions = {
|
actions = {
|
||||||
'nginx-generate-dhparam': {
|
'nginx-generate-dhparam': {
|
||||||
'command': 'openssl dhparam -out /etc/ssl/certs/dhparam.pem 2048',
|
'command': 'openssl dhparam -dsaparam -out /etc/ssl/certs/dhparam.pem 4096',
|
||||||
'unless': 'test -f /etc/ssl/certs/dhparam.pem',
|
'unless': 'test -f /etc/ssl/certs/dhparam.pem',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue