Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
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.
| |
|
Topic: Apache ssl proxy chain |
|
Author |
|
BattleMan
Joined: 27 Apr 2006 Posts: 1
|
Posted: Thu 27 Apr '06 12:17 Post subject: Apache ssl proxy chain |
|
|
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: 3092 Location: Hilversum, NL, EU
|
|
Back to top |
|
|
|
|
|
|