Skip to content

Commit

Permalink
Added support for both string and array on ssl_protocol for apache::v…
Browse files Browse the repository at this point in the history
…host
  • Loading branch information
Bruno Furtado committed Oct 1, 2015
1 parent 8447589 commit d57816b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/vhost/_ssl.erb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
SSLProxyEngine On
<%- end -%>
<%- if @ssl_protocol -%>
SSLProtocol <%= @ssl_protocol.compact.join(' ') %>
SSLProtocol <%= [@ssl_protocol].flatten.compact.join(' ') %>
<%- end -%>
<%- if @ssl_cipher -%>
SSLCipherSuite <%= @ssl_cipher %>
Expand Down

0 comments on commit d57816b

Please sign in to comment.