<div dir="ltr"><div>Hi,</div><div><br></div><div>I'm trying to rewrite some route in cloud foundry static buildpack, but whenever I rewrite, the https goes to http.</div><div><br></div><div>So I add return with / with /login, then it goes to <a href="http://server/">http://server/</a>, even it starts with <a href="https://server/login">https://server/login</a>.</div><div><br></div><div><br></div><div><div>location /login {</div><div>      return 301 /;</div><div><br></div><div>      <% if ENV["FORCE_HTTPS"] %></div><div>        if ($http_x_forwarded_proto != "https") {</div><div>          return 301 https://$host$request_uri;</div><div>        }</div><div>      <% end %></div><div> }</div></div><div><br></div><div><div class="gmail_signature"><br></div></div>
</div>