diff options
-rw-r--r-- | manifests/init.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index a5c8861..e462cb5 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -140,13 +140,13 @@ class nginx::puppetmaster inherits nginx::base { default => $puppetmaster_puppetmasters, } - $worker_connections = 1024, - $ssl_port = 8140, - $non_ssl_port = 8141, + $worker_connections = 1024 + $ssl_port = 8140 + $non_ssl_port = 8141 $puppetmaster_servers = [ "127.0.0.1:18140", "127.0.0.1:18141", "127.0.0.1:18142", - "127.0.0.1:18143" ], + "127.0.0.1:18143" ] file { "/etc/nginx/conf.d/puppetmaster.conf": content => template("nginx/puppetmaster.conf.erb"), |