Downgrade mysql cookbook for now
It doesn't play well with our current dev server setup
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
#
|
||||
# Cookbook Name:: apache2
|
||||
# Cookbook:: apache2
|
||||
# Attributes:: mod_ssl
|
||||
#
|
||||
# Copyright 2012-2013, Chef Software, Inc.
|
||||
# Copyright 2014, Viverae, Inc.
|
||||
# Copyright:: 2012-2013, Chef Software, Inc.
|
||||
# Copyright:: 2014, Viverae, Inc.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
@@ -20,12 +20,12 @@
|
||||
|
||||
default['apache']['mod_ssl']['port'] = 443
|
||||
default['apache']['mod_ssl']['protocol'] = 'All -SSLv2 -SSLv3'
|
||||
default['apache']['mod_ssl']['cipher_suite'] = 'EECDH+ECDSA+AESGCM:EECDH+aRSA+AESGCM:EECDH+ECDSA+SHA384:EECDH+ECDSA+SHA256:EECDH+aRSA+SHA384:EECDH+aRSA+SHA256:EECDH+aRSA+RC4:EECDH:EDH+aRSA:RC4!aNULL!eNULL!LOW!3DES!MD5!EXP!PSK!SRP!DSS'
|
||||
default['apache']['mod_ssl']['cipher_suite'] = 'EDH+CAMELLIA:EDH+aRSA:EECDH+aRSA+AESGCM:EECDH+aRSA+SHA256:EECDH:+CAMELLIA128:+AES128:+SSLv3:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!DSS:!RC4:!SEED:!IDEA:!ECDSA:kEDH:CAMELLIA128-SHA:AES128-SHA'
|
||||
default['apache']['mod_ssl']['honor_cipher_order'] = 'On'
|
||||
default['apache']['mod_ssl']['insecure_renegotiation'] = 'Off'
|
||||
default['apache']['mod_ssl']['strict_sni_vhost_check'] = 'Off'
|
||||
default['apache']['mod_ssl']['session_cache'] = 'shmcb:/var/run/apache2/ssl_scache'
|
||||
default['apache']['mod_ssl']['session_cache_timeout'] = 300
|
||||
default['apache']['mod_ssl']['session_cache'] = 'shmcb:/var/run/apache2/ssl_scache'
|
||||
default['apache']['mod_ssl']['session_cache_timeout'] = 300
|
||||
default['apache']['mod_ssl']['compression'] = 'Off'
|
||||
default['apache']['mod_ssl']['use_stapling'] = 'Off'
|
||||
default['apache']['mod_ssl']['stapling_responder_timeout'] = 5
|
||||
@@ -45,8 +45,12 @@ when 'debian'
|
||||
end
|
||||
end
|
||||
when 'freebsd'
|
||||
default['apache']['mod_ssl']['session_cache'] = 'shmcb:/var/run/ssl_scache(512000)'
|
||||
default['apache']['mod_ssl']['session_cache'] = 'shmcb:/var/run/ssl_scache(512000)'
|
||||
default['apache']['mod_ssl']['mutex'] = 'file:/var/run/ssl_mutex'
|
||||
when 'amazon'
|
||||
if node['apache']['version'] == '2.4'
|
||||
default['apache']['mod_ssl']['pkg_name'] = 'mod24_ssl'
|
||||
end
|
||||
when 'rhel', 'fedora', 'suse'
|
||||
case node['platform']
|
||||
when 'amazon'
|
||||
@@ -54,6 +58,6 @@ when 'rhel', 'fedora', 'suse'
|
||||
default['apache']['mod_ssl']['pkg_name'] = 'mod24_ssl'
|
||||
end
|
||||
end
|
||||
default['apache']['mod_ssl']['session_cache'] = 'shmcb:/var/cache/mod_ssl/scache(512000)'
|
||||
default['apache']['mod_ssl']['session_cache'] = 'shmcb:/var/cache/mod_ssl/scache(512000)'
|
||||
default['apache']['mod_ssl']['mutex'] = 'default'
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user