SSLProxyEngine is not working in OHS 2
I am using Standalone http sever from Oracle companion cd 10.1.3.1. OHS version is Oracle HTTP Server 2.0. I am trying to use SSL proxy. VirtualHost is not recognizing SSLProxyEngine and Http server doesn't start.
According to documentation SSLProxyEngine should work with OHS 2.
My VH is :
Listen 4441
<VirtualHost *:4441>
DocumentRoot "d:\ohs1\ohs\htdocs"
ServerName myserver
ServerAdmin myadmin@server.com
ErrorLog logs\error.log
TransferLog logs\access.log
LogLevel debug
<IfModule mod_proxy.c>
SSLEngine on
SSLProxyEngine on ===> [*** It is not working ****]
SSLCipherSuite ALL:!ADH:!EXPORT56:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP
SSLWallet file:d:\ohs1\ohs\conf\ssl.wlt\myssl
SetEnvIf User-Agent "MSIE" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
CustomLog logs\ssl_request.log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
ProxyRequests off
ProxyVia On
ProxyPreserveHost On
ProxyPass / https://xxx.xxx.xxx.xxxx:yyyy/
ProxyPassReverse / https://xxx.xxx.xxx.xxxx:yyyy/
</IfModule>
</VirtualHost>