Thanks, and I have gotten a little further. We are trying to use SNI and have setup a file called ssl.conf containing:
Code:
LoadModule ssl_module modules/mod_ssl.so
Listen 192.168.1.100:443
NameVirtualHost *:443
and then in each of the SSL enabled configuration files we have:
Code:
<VirtualHost *:443>
ServerName testsslsite.domain.com
...
the first site loads fine, in alphabetical order, but the second one always returns a 404 errror. And interestingly the associated log file for the second site does not show any errors or connections.
Is there anything special in LSWS for enabling SNI ?