File tree 7 files changed +6
-61
lines changed
7 files changed +6
-61
lines changed Original file line number Diff line number Diff line change @@ -277,11 +277,11 @@ Data type: `String[1]`
277
277
The version of nginx installed (or being installed).
278
278
Unfortunately, different versions of nginx may need configuring
279
279
differently. The default is derived from the version of nginx
280
- already installed. If the fact is unavailable, it defaults to '1.6 .0'.
280
+ already installed. If the fact is unavailable, it defaults to '1.15 .0'.
281
281
You may need to set this manually to get a working and idempotent
282
282
configuration.
283
283
284
- Default value: ` pick(fact('nginx_version'), '1.6 .0') `
284
+ Default value: ` pick(fact('nginx_version'), '1.15 .0') `
285
285
286
286
##### <a name =" -nginx--debug_connections " ></a >` debug_connections `
287
287
@@ -3080,7 +3080,7 @@ Create a new mapping entry for NGINX
3080
3080
nginx::resource::map { 'backend_pool':
3081
3081
ensure => present,
3082
3082
hostnames => true,
3083
- default => 'ny-pool-1,
3083
+ default => 'ny-pool-1' ,
3084
3084
string => '$http_host',
3085
3085
mappings => {
3086
3086
'*.nyc.example.com' => 'ny-pool-1',
Original file line number Diff line number Diff line change 20
20
# The version of nginx installed (or being installed).
21
21
# Unfortunately, different versions of nginx may need configuring
22
22
# differently. The default is derived from the version of nginx
23
- # already installed. If the fact is unavailable, it defaults to '1.6 .0'.
23
+ # already installed. If the fact is unavailable, it defaults to '1.15 .0'.
24
24
# You may need to set this manually to get a working and idempotent
25
25
# configuration.
26
26
#
240
240
Hash $nginx_upstreams = {},
241
241
Nginx::UpstreamDefaults $nginx_upstreams_defaults = {},
242
242
Boolean $purge_passenger_repo = true ,
243
- String[1] $nginx_version = pick(fact(' nginx_version' ), ' 1.6 .0' ),
243
+ String[1] $nginx_version = pick(fact(' nginx_version' ), ' 1.15 .0' ),
244
244
245
245
# ## END Hiera Lookups ###
246
246
) inherits nginx::params {
Original file line number Diff line number Diff line change @@ -79,45 +79,5 @@ class { 'nginx':
79
79
describe port ( 465 ) do
80
80
it { is_expected . to be_listening }
81
81
end
82
-
83
- context 'when configured for nginx 1.14' do
84
- it 'runs successfully' do
85
- pp = "
86
- if fact('os.family') == 'RedHat' {
87
- package { 'nginx-mod-mail':
88
- ensure => installed,
89
- }
90
- }
91
-
92
- class { 'nginx':
93
- mail => true,
94
- nginx_version => '1.14.0',
95
- dynamic_modules => fact('os.family') ? {
96
- 'RedHat' => ['/usr/lib64/nginx/modules/ngx_mail_module.so'],
97
- default => [],
98
- }
99
- }
100
- nginx::resource::mailhost { 'domain1.example':
101
- ensure => present,
102
- auth_http => 'localhost/cgi-bin/auth',
103
- protocol => 'smtp',
104
- listen_port => 587,
105
- ssl => true,
106
- ssl_port => 465,
107
- ssl_cert => '/etc/pki/tls/certs/blah.cert',
108
- ssl_key => '/etc/pki/tls/private/blah.key',
109
- xclient => 'off',
110
- }
111
- "
112
-
113
- apply_manifest ( pp , catch_failures : true )
114
- end
115
-
116
- describe file ( '/etc/nginx/conf.mail.d/domain1.example.conf' ) do
117
- it 'does\'t contain `ssl` on `listen` line' do
118
- is_expected . to contain 'listen *:465;'
119
- end
120
- end
121
- end
122
82
end
123
83
end
Original file line number Diff line number Diff line change 675
675
it { is_expected . to contain_concat__fragment ( "#{ title } -ssl-header" ) . with_content ( %r{ ssl on;} ) }
676
676
end
677
677
678
- context 'with fact nginx_version=1.14.1' do
679
- let ( :facts ) { facts . merge ( nginx_version : '1.14.1' ) }
680
-
681
- it { is_expected . to contain_concat__fragment ( "#{ title } -ssl-header" ) . with_content ( %r{ ssl on;} ) }
682
- end
683
-
684
678
context 'with fact nginx_version=1.15.1' do
685
679
let ( :facts ) { facts . merge ( nginx_version : '1.15.1' ) }
686
680
Original file line number Diff line number Diff line change @@ -23,9 +23,6 @@ server {
23
23
<%- } -%>
24
24
<%= $mailhost_common -%>
25
25
26
- <%- if versioncmp($nginx_version, '1.15.0') < 0 { -%>
27
- ssl off;
28
- <% } %>
29
26
starttls <%= $starttls %>;
30
27
31
28
<% if $starttls != 'off' { %>
Original file line number Diff line number Diff line change 14
14
server {
15
15
<%= $mailhost_prepend -%>
16
16
<%- $listen_ip.each |$ip| { -%>
17
- listen <%= $ip %>:<%= $ssl_port %><% if versioncmp($nginx_version, '1.15.0') >= 0 { %> ssl<% } %> ;
17
+ listen <%= $ip %>:<%= $ssl_port %> ssl;
18
18
<%- } -%>
19
19
<%- $ipv6_listen_ip.each |$ipv6| { -%>
20
20
listen [<%= $ipv6 %>]:<%= $ssl_port %> <% if $ipv6_listen_options { %><%= $ipv6_listen_options %><% } %>;
21
21
<%- } -%>
22
22
<%= $mailhost_common -%>
23
23
24
- <%- if versioncmp($nginx_version, '1.15.0') < 0 { -%>
25
- ssl on;
26
- <% } %>
27
24
starttls off;
28
25
29
26
<%= $mailhost_ssl_settings -%>
Original file line number Diff line number Diff line change 1
- <% if scope.call_function('versioncmp', [scope['nginx::nginx_version'], '1.15.0']) < 0 -%>
2
- ssl on;
3
- <% end -%>
4
1
<% if scope.call_function('versioncmp', [scope['nginx::nginx_version'], '1.25.1']) >= 0 && @http2 -%>
5
2
http2 <%= @http2 %> ;
6
3
<% end -%>
You can’t perform that action at this time.
0 commit comments