blob: 9671bb30ee8480c05d6df14dcc7122ec7c3e526c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# This configuration file was auto-generated by the Puppet configuration
# management system. Any changes you make to this file will be overwritten
# the next time Puppet runs. Please make configuration changes to this
# service in Puppet.
ssl on;
ssl_certificate /var/lib/puppet/ssl/certs/puppet.<%= domain %>.pem;
ssl_certificate_key /var/lib/puppet/ssl/private_keys/puppet.<%= domain %>.pem;
ssl_client_certificate /var/lib/puppet/ssl/certs/ca.pem;
ssl_ciphers SSLv2:-LOW:-EXPORT:RC4+RSA;
ssl_session_cache shared:SSL:8m;
ssl_session_timeout 5m;
upstream puppet-production {
<% puppetmaster_servers.each do |upstream| -%>
server <%= upstream %>;
<% end -%>
}
|