Skip to content

Commit 9996f98

Browse files
committed
Added new SSL protocol and cipher variables to automated test.
1 parent 0218f54 commit 9996f98

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

tests/passenger.pp

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
class{ 'puppet::passenger':
2-
puppet_passenger_port => '8140',
3-
puppet_docroot => '/etc/puppet/doc',
4-
apache_serveradmin => '[email protected]',
5-
puppet_site => 'master.example.com',
6-
puppet_conf => '/etc/puppet/puppet.conf',
7-
puppet_ssldir => '/var/lib/puppet/ssl',
8-
certname => 'master.example.com',
9-
passenger_max_pool_size => '4',
10-
passenger_high_performance => true,
11-
passenger_max_requests => '1000',
12-
passenger_stat_throttle_rate => '30',
2+
puppet_passenger_port => '8140',
3+
puppet_passenger_ssl_protocol => 'TLSv1.2',
4+
puppet_passenger_ssl_cipher => 'AES256+EECDH:AES256+EDH',
5+
puppet_docroot => '/etc/puppet/doc',
6+
apache_serveradmin => '[email protected]',
7+
puppet_site => 'master.example.com',
8+
puppet_conf => '/etc/puppet/puppet.conf',
9+
puppet_ssldir => '/var/lib/puppet/ssl',
10+
certname => 'master.example.com',
11+
passenger_max_pool_size => '4',
12+
passenger_high_performance => true,
13+
passenger_max_requests => '1000',
14+
passenger_stat_throttle_rate => '30',
1315
}

0 commit comments

Comments
 (0)