Skip to content
This repository was archived by the owner on Mar 28, 2019. It is now read-only.

Commit 9a8c81c

Browse files
committed
Set puppet.conf SSL settings for thin
Without this there are SSL errors using nginx/thin
1 parent 8a874d1 commit 9a8c81c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

manifests/server/thin.pp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@
77
class { '::thin': }
88
class { 'nginx::server': }
99

10+
Ini_setting {
11+
ensure => 'present',
12+
section => 'master',
13+
path => $puppet::params::puppet_conf,
14+
}
15+
16+
ini_setting {
17+
'ssl_client_header':
18+
ensure => 'absent',
19+
setting => 'ssl_client_header';
20+
'ssl_client_verify_header':
21+
ensure => 'absent',
22+
setting => 'ssl_client_verify_header';
23+
}
24+
1025
$servers = $::processorcount
1126
nginx::vhost { 'puppetmaster':
1227
port => 8140,

0 commit comments

Comments
 (0)