Re: proxy_pass via HTTP proxy

2013-07-22 Thread Francis Daly
On Wed, Jul 17, 2013 at 08:58:35PM -0400, cavedon wrote: Hi there, > However, in order to reach S, I need to go though an HTTP server P. This > means nginx would need to connect to P, issue a CONNECT request, and then > tunnel the HTTPS request to S. > Is this supported? No. > How to enable it?

Re: proxy_pass via HTTP proxy

2013-07-18 Thread mex
just a try / not sure if it will work - when starting your nginx try to use a shellscript script that sets http_proxy / https_proxy: export http_proxy=http://server-ip:port/ ; i'm not sure it nginx has some options to use a 3rd proxy. - maybe you can use firewall-rules to do a simple portforwardi

proxy_pass via HTTP proxy

2013-07-17 Thread cavedon
Hi, I am trying to configure my nginx instance so that it "proxy_pass"es to another HTTPS server S. However, in order to reach S, I need to go though an HTTP server P. This means nginx would need to connect to P, issue a CONNECT request, and then tunnel the HTTPS request to S. Is this supported? H