On Sat, Oct 08, 2011 at 04:58:30PM -0500, James Nelson wrote: > Alright, now I get to play really dumb. I've been using curl to test this > setup- I'm assuming > > curl -vkL https://<PROXY SERVER>/<REQUEST>:803 > > is not a proper way to allow curl to reach a different port. If it is, my > logs are not picking it up. What's the best method to test using a > different port?
you got the ':803' at the wrong place, you should have used : curl -vkL https://<PROXY SERVER>:803/<REQUEST> There is no reason curl would not work on any port. Willy

