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