diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-02-17 20:25:55 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-02-17 20:25:55 -0200 |
commit | 1f3cb3afc59ed76067ec079effdbdb207c9490c3 (patch) | |
tree | 61d2020e1eb42d3a9a1ba87dc642c3c1073d1bfb | |
parent | 85af58119f219861b45cd894ea7e1fa57a012357 (diff) | |
download | puppet-nginx-1f3cb3afc59ed76067ec079effdbdb207c9490c3.tar.gz puppet-nginx-1f3cb3afc59ed76067ec079effdbdb207c9490c3.tar.bz2 |
Fixes
-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"), |