Shared Object/Virtual Host/SSL
am 26.11.2007 04:46:03 von RN GardnerI wrote a shared object using the Delphi WebBroker (not really
significant). I configure httpd.conf as follows:
Loadmodule mysharedobject_module modules/mysharedobject.dll
SetHandler mysharedobject-handler
Allow from localhost
Allow from computer-1
So I can successfully do calls such as this:
http://www.mydomain.com/myso/login
Now I want to support SSL. So I create a Virtual Host:
ServerName www.mydomain.com
SSLEngine on
SSLCertificateFile "C:\Program Files\Apache Group\Apache2\bin
\www.mydomain.com.cert"
SSLCertificateKeyFile "C:\Program Files\Apache Group\Apache2\bin
\www.mydomain.com.key"
DocumentRoot "C:/mydomain/httpdocs"
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
SSL works provided it is a static html page:
https://www.mydomain.com/login.html
How do I configure to support SSL for methods of my shared object?:
https://www.mydomain.com/myso/login?username="public"
Thanks.