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 $update_manifest_timeout='5m', |
6 ) { | 7 ) { |
7 class {'nginx': | 8 class {'nginx': |
8 worker_processes => 2, | 9 worker_processes => 2, |
9 worker_connections => 4000, | 10 worker_connections => 4000, |
10 ssl_session_cache => off, | 11 ssl_session_cache => off, |
11 } | 12 } |
12 | 13 |
13 File { | 14 File { |
14 owner => root, | 15 owner => root, |
15 group => root | 16 group => root |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 socket => '/tmp/multiplexer-fastcgi.sock', | 132 socket => '/tmp/multiplexer-fastcgi.sock', |
132 mode => '0666', | 133 mode => '0666', |
133 user => 'nginx', | 134 user => 'nginx', |
134 children => 1, | 135 children => 1, |
135 require => [ | 136 require => [ |
136 Exec["fetch_sitescripts"], | 137 Exec["fetch_sitescripts"], |
137 Package["python-flup"], | 138 Package["python-flup"], |
138 ], | 139 ], |
139 } | 140 } |
140 } | 141 } |
OLD | NEW |