Skip to content

Commit bcfac6c

Browse files
fix ssl_ciphers array behavior
1 parent 8c07b77 commit bcfac6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/vhost/_ssl.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
SSLProtocol <%= [@ssl_protocol].flatten.compact.join(' ') %>
1414
<%- end -%>
1515
<%- if @ssl_cipher -%>
16-
SSLCipherSuite <%= @ssl_cipher %>
16+
SSLCipherSuite <%= [@ssl_cipher].split(':').flatten.compact.join(':') %>
1717
<%- end -%>
1818
<%- if not @ssl_honorcipherorder.nil? -%>
1919
SSLHonorCipherOrder <%= scope.call_function('apache::bool2httpd', [@_ssl_honorcipherorder]) %>

0 commit comments

Comments
 (0)