| OLD | NEW |
| 1 class updateserver( | 1 class updateserver( |
| 2 $domain, | 2 $domain, |
| 3 $certificate, | 3 $certificate, |
| 4 $private_key, | 4 $private_key, |
| 5 $is_default=false | 5 $is_default=false |
| 6 ) { | 6 ) { |
| 7 | 7 |
| 8 include adblockplus::abpssembly |
| 8 include adblockplus::web | 9 include adblockplus::web |
| 9 | 10 |
| 10 class {'nginx': | 11 class {'nginx': |
| 11 worker_connections => 4000, | 12 worker_connections => 4000, |
| 12 ssl_session_cache => off, | 13 ssl_session_cache => off, |
| 13 } | 14 } |
| 14 | 15 |
| 15 File { | 16 File { |
| 16 owner => root, | 17 owner => root, |
| 17 group => root | 18 group => root |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 fcgi_app => '/opt/sitescripts/multiplexer.fcgi', | 141 fcgi_app => '/opt/sitescripts/multiplexer.fcgi', |
| 141 socket => '/tmp/multiplexer-fastcgi.sock', | 142 socket => '/tmp/multiplexer-fastcgi.sock', |
| 142 mode => '0666', | 143 mode => '0666', |
| 143 user => 'nginx', | 144 user => 'nginx', |
| 144 children => 1, | 145 children => 1, |
| 145 require => [ | 146 require => [ |
| 146 Class["sitescripts"], | 147 Class["sitescripts"], |
| 147 ], | 148 ], |
| 148 } | 149 } |
| 149 } | 150 } |
| OLD | NEW |