We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcfac6c commit ff8c637Copy full SHA for ff8c637
templates/vhost/_ssl.erb
@@ -13,7 +13,10 @@
13
SSLProtocol <%= [@ssl_protocol].flatten.compact.join(' ') %>
14
<%- end -%>
15
<%- if @ssl_cipher -%>
16
- SSLCipherSuite <%= [@ssl_cipher].split(':').flatten.compact.join(':') %>
+ <%- if @ssl_cipher.kind_of?(String) -%>
17
+ SSLCipherSuite <%= @ssl_cipher %>
18
+ <%- else -%>
19
+ SSLCipherSuite <%= @ssl_cipher.flatten.compact.join(':') %>
20
21
<%- if not @ssl_honorcipherorder.nil? -%>
22
SSLHonorCipherOrder <%= scope.call_function('apache::bool2httpd', [@_ssl_honorcipherorder]) %>
0 commit comments