voxpupuli / puppet-jira

Atlassian JIRA Puppet Module
https://forge.puppet.com/puppet/jira
Apache License 2.0
62 stars 143 forks source link

Proxy bypass HTTP connector requires AJP Protocol #227

Closed eriksalinenike closed 3 years ago

eriksalinenike commented 7 years ago

Proxy bypass HTTP connector for tomcat requires the AJP protocol, however we are using Nginx as a reverse proxy. Is there any way to set a bypass port using the HTTP/1.1 protocol?

if ! empty($ajp) { if ! has_key($ajp, 'port') { fail('You need to specify a valid port for the AJP connector.') } else { validate_re($ajp['port'], '^\d+$') } if ! has_key($ajp, 'protocol') { fail('You need to specify a valid protocol for the AJP connector.') } else { validate_re($ajp['protocol'], ['^AJP/1.3$', '^org.apache.coyote.ajp']) } }

oranenj commented 3 years ago

I think master supports custom tomcat connectors nowadays, which might solve this problem.

I'll close this issue since it's getting old. :)