Merge pull request #197 from elmerfud/master
Fix for order statements. Concat requires strings
This commit is contained in:
commit
b61c745012
1 changed files with 2 additions and 2 deletions
|
@ -180,7 +180,7 @@ define nginx::resource::location (
|
|||
concat::fragment { "${vhost}-${priority}-${location_sanitized}":
|
||||
target => $config_file,
|
||||
content => $content_real,
|
||||
order => $priority,
|
||||
order => "${priority}",
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -190,7 +190,7 @@ define nginx::resource::location (
|
|||
concat::fragment {"${vhost}-${ssl_priority}-${location_sanitized}-ssl":
|
||||
target => $config_file,
|
||||
content => $content_real,
|
||||
order => $ssl_priority,
|
||||
order => "${ssl_priority}",
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue