This is a discussion on Reverse HTTPS proxy with Apache 1.3 within the Apache Web Server forums, part of the Web Server and Related Forums category; Hello, can anybody please tell me whether or not the following modules exist also for Apache 1.3 or only ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello,
can anybody please tell me whether or not the following modules exist also for Apache 1.3 or only for Apache 2.0 ? proxy_connect_module proxy_ftp_module proxy_http_module I can't find them for Apache 1.3 but I think I need them in order to get my reverese https proxy working correctly. Currently forwarding HTTPS connections like this works: <VirtualHost 11.11.11.11:443> SSLEnable ServerName www.example-domain.com ProxyPass / http://22.22.22.22/ # <-- Note: "http://" </VirtualHost> Trying to forward HTTPS connections like this... <VirtualHost 11.11.11.11:443> SSLEnable ServerName www.example-domain.com ProxyPass / https://22.22.22.22/ # <-- Note: "httpS://" </VirtualHost> .... gives me the following error message: "proxy: No protocol handler was valid for the URL /shop/daten.php. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule." Fritz |
|
|||
|
On 2005-08-14 09:14:53 -0400, fritz-bayer@web.de said:
> Hello, > > can anybody please tell me whether or not the following modules exist > also for Apache 1.3 or only for Apache 2.0 ? > > proxy_connect_module > proxy_ftp_module > proxy_http_module > > I can't find them for Apache 1.3 but I think I need them in order to > get my reverese https proxy working correctly. > > Currently forwarding HTTPS connections like this works: > > <VirtualHost 11.11.11.11:443> > SSLEnable > ServerName www.example-domain.com > ProxyPass / http://22.22.22.22/ # <-- Note: "http://" > </VirtualHost> > > Trying to forward HTTPS connections like this... > > <VirtualHost 11.11.11.11:443> > SSLEnable > ServerName www.example-domain.com > ProxyPass / https://22.22.22.22/ # <-- Note: "httpS://" > </VirtualHost> > > ... gives me the following error message: "proxy: No protocol handler > was valid for the URL /shop/daten.php. If you are using a DSO version > of mod_proxy, make sure the proxy submodules are included in the > configuration using LoadModule." > > Fritz Fritz, Check the availability of the SSLProxyEngine directive for Apache 1.3. I'm using this directive on Apache 2.0 to do exactly what you are talking about. Also, check this page: <http://httpd.apache.org/docs/1.3/misc/howto.html#proxyssl> There's some info there that might be helpful to you. HTH. -- Scott Lowe |