summaryrefslogtreecommitdiff
path: root/templates/puppetmaster.conf.erb
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-06-16 14:50:55 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-06-16 14:50:55 -0300
commit3580b0ee72b210365de78a024c3bf280839cb420 (patch)
tree054e19b79255b04235817bef8971a015dbf85a3e /templates/puppetmaster.conf.erb
parent4dc88085101cf28ed8afba7cfd7fe5461ea64595 (diff)
downloadpuppet-nginx-3580b0ee72b210365de78a024c3bf280839cb420.tar.gz
puppet-nginx-3580b0ee72b210365de78a024c3bf280839cb420.tar.bz2
Removes puppetmaster support
Diffstat (limited to 'templates/puppetmaster.conf.erb')
-rw-r--r--templates/puppetmaster.conf.erb18
1 files changed, 0 insertions, 18 deletions
diff --git a/templates/puppetmaster.conf.erb b/templates/puppetmaster.conf.erb
deleted file mode 100644
index f8590c2..0000000
--- a/templates/puppetmaster.conf.erb
+++ /dev/null
@@ -1,18 +0,0 @@
-# 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/puppetmaster/ssl/certs/<%= puppetmaster_certname %>.pem;
-ssl_certificate_key /var/lib/puppetmaster/ssl/private_keys/<%= puppetmaster_certname %>.pem;
-ssl_client_certificate /var/lib/puppetmaster/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 -%>
-}