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 8c07b77 commit 2aafe0eCopy full SHA for 2aafe0e
templates/vhost/_ssl.erb
@@ -13,7 +13,11 @@
13
SSLProtocol <%= [@ssl_protocol].flatten.compact.join(' ') %>
14
<%- end -%>
15
<%- if @ssl_cipher -%>
16
+ <%- if @ssl_cipher.kind_of?(String) -%>
17
SSLCipherSuite <%= @ssl_cipher %>
18
+ <%- else -%>
19
+ SSLCipherSuite <%= @ssl_cipher.flatten.compact.join(':') %>
20
+ <%- end -%>
21
22
<%- if not @ssl_honorcipherorder.nil? -%>
23
SSLHonorCipherOrder <%= scope.call_function('apache::bool2httpd', [@_ssl_honorcipherorder]) %>
0 commit comments