Nodeworx/siteworx with youtr OWN SSL certificat

Hello,

I have a CA SSL certificat and I wanted /nodeworx and /siteworx use this certificate.

Like this it won’t give anymore warning to users telling the certificate is not signed !
(in the new IE7, the brower recommand to not enter the website, and it might confused a lot of clients)

My SSL cert is for only one subdomain which is secure.my-domain.com

So I wanted that all http://secure-my-domain.com/nodeworx or http://secure-my-domain.com/siteworx use this certificate and not warn about a ssl problem

It’s pretty simple to do this !

In the /etc/httpd/conf.d/my-domain.com.conf add these lines in the <VirtualHost xxx.xxx.xxx.xxx:443> section just before </VirtualHost>

ProxyRequests Off
SSLProxyEngine On
ProxyPass /siteworx https://127.0.0.1:2443/siteworx
ProxyPassReverse /siteworx https://127.0.0.1:2443/siteworx

ProxyPass /nodeworx https://127.0.0.1:2443/nodeworx
ProxyPassReverse /nodeworx https://127.0.0.1:2443/nodeworx

Now every https://secure.my-domain.com/nodeworx{siteworx} requests won’t warn about an invalid SSL Certificate and will use my valid SSL certificate !!!

Pascal

Would this be over written when IW3 comes out? Or any version of IW as for as that goes.