So we&#39;re doing a credit card transaction and it comes back from paypal on the return trip with that error (on our end).  The reason is that the return URL is: <br><br><a href="http://www.domain.com:443/..">http://www.domain.com:443/..</a>..<br>
<br>so its trying to access port 443 via http.<br><br>I won&#39;t know till tomorrow, but I hope that we can adjust the return URL to correctly be &quot;<a href="https://www.domain.com.">https://www.domain.com.</a>.. than it works as it should.<br>
<br>My question is, should I put something in the Nginx configuration file that if someone tries to access &quot;http&quot; using port 443, redirect them to https?  If so, how?  Is that the correct way of going about it outside of correcting the return URL (which of course would be the ideal way), but in general, should requests coming to <a href="http://www.domain.com:443">http://www.domain.com:443</a> be forced to HTTPS?<br>
<br>Thanks!<br>