logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Apache ssl proxy chain
Author
BattleMan



Joined: 27 Apr 2006
Posts: 1

PostPosted: Thu 27 Apr '06 12:17    Post subject: Apache ssl proxy chain Reply with quote

hi all
i've been implementing a reverse proxy in apache, the conf is

Code:
<VirtualHost 127.0.0.1:443>
SSLEngine On
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateKeyFile c:/......key
SSLCertificateFile c:/......crt
ServerName localhost

SSLProxyEngine on
ProxyPass                  /     https://target
ProxyPassReverse      /     https://target

SSLProxyVerify none
SSLProxyProtocol all
SSLProxyCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL

</VirtualHost>


it works perfectly.
when even i enter https://localhost i get the content of https://target.
now, my goal is a bit diffrent.
i have another ssl proxy, this time a forward proxy [i.e. a request is required] at the address https://proxy
i want that the reroute to https://target will pas through https://proxy
how can i do it in apache?
can anyone help?

thank you
Back to top
Steffen
Moderator


Joined: 15 Oct 2005
Posts: 3053
Location: Hilversum, NL, EU

PostPosted: Wed 02 Aug '06 15:52    Post subject: Reply with quote

I found info that is maybe usefull for you:

http://www.squid-cache.org/mail-archive/squid-users/200005/0744.html

Steffen
Back to top


Reply to topic   Topic: Apache ssl proxy chain View previous topic :: View next topic
Post new topic   Forum Index -> Apache