Skip to content

Commit

Permalink
Add $tomcat_protocol_ssl paramater for compatibility with Jira >= 7.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Leary committed Aug 16, 2017
1 parent 7607cec commit c6ac0f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@
$tomcat_https_port = 8443,
Optional[Integer] $tomcat_redirect_https_port = undef,
$tomcat_protocol = 'HTTP/1.1',
$tomcat_protocol_ssl = 'org.apache.coyote.http11.Http11Protocol',
$tomcat_use_body_encoding_for_uri = true,
$tomcat_disable_upload_timeout = true,
$tomcat_key_alias = 'jira',
Expand Down
2 changes: 1 addition & 1 deletion templates/server.xml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<% if @tomcat_native_ssl -%>
<Connector
port="<%= @tomcat_https_port %>"
protocol="org.apache.coyote.http11.Http11Protocol"
protocol="<%= @tomcat_protocol_ssl %>"
<%- if @tomcat_address -%>
address="<%= @tomcat_address %>"
<%- end -%>
Expand Down

0 comments on commit c6ac0f1

Please sign in to comment.