<html><head><meta http-equiv="Content-Type" content="text/html charset=windows-1252"><meta http-equiv="Content-Type" content="text/html charset=windows-1252"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">Hi,<div><br></div><div>Long story, but I’m using a config where I’m connecting to the Plackup instance through an SSH tunnel.  The users I’m developing for will connect through an Apache reverse proxy to the same environment.  Anyhow, the behind_proxy setting was causing my SSH tunnel session to barf on splitting an uninitialised variable.  This fixes it - should be harmless to put in for everyone, but a bit safer for the fringe cases:</div><div><br></div><div><div>--- /perf/perl/lib/perl5/Dancer2/Core/Request.pm<span class="Apple-tab-span" style="white-space:pre">       </span>2014-05-12 14:23:07.000000000 +1000</div><div>+++ /perf/perl/lib/perl5/Dancer2/Core/Request.pm.bak<span class="Apple-tab-span" style="white-space:pre">      </span>2014-05-12 14:26:28.049744396 +1000</div><div>@@ -222,7 +222,7 @@</div><div> sub host {</div><div>     my ($self) = @_;</div><div><br></div><div>-    if ( $self->is_behind_proxy && $self->env->{HTTP_X_FORWARDED_HOST} ) {</div><div>+    if ( $self->is_behind_proxy ) {</div><div>         my @hosts = split /\s*,\s*/, $self->env->{HTTP_X_FORWARDED_HOST}, 2;</div><div>         return $hosts[0];</div><div>     } else {</div></div><div><br></div><div><br><div apple-content-edited="true">
<div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div style="margin: 0px;"><font face="Times New Roman"><i>Regards,</i></font></div><div style="margin: 0px;"><font face="Times New Roman"><i>Matt</i></font></div><div style="margin: 0px; font-size: 12px; min-height: 14px;"><br></div></div><br class="Apple-interchange-newline"></div><br class="Apple-interchange-newline"><br class="Apple-interchange-newline">
</div>
<br></div><br><br>
<br></body></html>