Please provide a way to add relaxedPathChars and relaxedQueryChars. Thanks!
<% if @version >= 7.12 -%>
relaxedPathChars="[]|"
relaxedQueryChars="[]|{}^\`"<>"
<% end -%>
As a workaround you can append these to the proxy parameter, eg:
proxy => { 'scheme' => 'https',
'proxyName' => $facts['hostname'],
'proxyPort'=>'443',
'relaxedPathChars'=>'[]|',
'relaxedQueryChars'=>'[]|{}^\`"<>'
this workaround works, thank you. i'll keep an eye out for the next update.
proxy => {
proxyName => 'mysite.com',
proxyPort => '443',
relaxedPathChars => '[]|',
relaxedQueryChars => '[]|{}^\`"<>',
scheme => 'https',