| LEFT | RIGHT |
| 1 class nginx ( | 1 class nginx ( |
| 2 $worker_processes = $nginx::params::worker_processes, | 2 $worker_processes = $nginx::params::worker_processes, |
| 3 $worker_connections = $nginx::params::worker_connections, | 3 $worker_connections = $nginx::params::worker_connections, |
| 4 $ssl_session_cache = $nginx::params::ssl_session_cache, | 4 $ssl_session_cache = $nginx::params::ssl_session_cache, |
| 5 $geoip_country = undef, | 5 $geoip_country = undef, |
| 6 $geoip_city = undef, | 6 $geoip_city = undef, |
| 7 ) inherits nginx::params { | 7 ) inherits nginx::params { |
| 8 | 8 |
| 9 # Class['ssh'] is assumed to handle SSL-related quirks and therefore | 9 # Class['ssh'] is assumed to handle SSL-related quirks and therefore |
| 10 # the inclusion here became necessary. | 10 # the inclusion here became necessary. |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 source => 'puppet:///modules/nginx/anonymize-access-log.py', | 264 source => 'puppet:///modules/nginx/anonymize-access-log.py', |
| 265 } | 265 } |
| 266 | 266 |
| 267 file {'/var/log/archive': | 267 file {'/var/log/archive': |
| 268 ensure => 'directory', | 268 ensure => 'directory', |
| 269 group => 'adm', | 269 group => 'adm', |
| 270 mode => '0750', | 270 mode => '0750', |
| 271 owner => 'root', | 271 owner => 'root', |
| 272 } | 272 } |
| 273 } | 273 } |
| LEFT | RIGHT |